2025-10-16 14:22:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Livewire\Volt\Component;
|
|
|
|
|
|
|
|
|
|
new class extends Component {
|
2025-10-31 13:02:23 +01:00
|
|
|
public function with(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'title' => __('Appearance'),
|
|
|
|
|
];
|
|
|
|
|
}
|
2025-10-16 14:22:46 +02:00
|
|
|
}; ?>
|
|
|
|
|
|
|
|
|
|
<section class="w-full">
|
|
|
|
|
@include('partials.settings-heading')
|
|
|
|
|
|
|
|
|
|
<x-settings.layout :heading="__('Appearance')" :subheading=" __('Update the appearance settings for your account')">
|
|
|
|
|
<flux:radio.group x-data variant="segmented" x-model="$flux.appearance">
|
|
|
|
|
<flux:radio value="light" icon="sun">{{ __('Light') }}</flux:radio>
|
|
|
|
|
<flux:radio value="dark" icon="moon">{{ __('Dark') }}</flux:radio>
|
|
|
|
|
<flux:radio value="system" icon="computer-desktop">{{ __('System') }}</flux:radio>
|
|
|
|
|
</flux:radio.group>
|
|
|
|
|
</x-settings.layout>
|
|
|
|
|
</section>
|