mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-16 16:37:47 +00:00
22 lines
759 B
PHP
22 lines
759 B
PHP
<?php
|
|
|
|
use Livewire\Component;
|
|
|
|
new class extends Component
|
|
{
|
|
//
|
|
}; ?>
|
|
|
|
<section class="w-full">
|
|
@include('partials.settings-heading')
|
|
|
|
<flux:heading class="sr-only">{{ __('Appearance Settings') }}</flux:heading>
|
|
|
|
<x-pages::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-pages::settings.layout>
|
|
</section>
|