mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
20 lines
817 B
PHP
20 lines
817 B
PHP
<div class="flex items-start max-md:flex-col">
|
|
<div class="mr-10 w-full pb-4 md:w-[220px]">
|
|
<flux:navlist>
|
|
<flux:navlist.item href="{{ route('settings.profile') }}" wire:navigate>Profile</flux:navlist.item>
|
|
<flux:navlist.item href="{{ route('settings.password') }}" wire:navigate>Password</flux:navlist.item>
|
|
<flux:navlist.item href="{{ route('settings.appearance') }}" wire:navigate>Appearance</flux:navlist.item>
|
|
</flux:navlist>
|
|
</div>
|
|
|
|
<flux:separator class="md:hidden" />
|
|
|
|
<div class="flex-1 self-stretch max-md:pt-6">
|
|
<flux:heading>{{ $heading ?? '' }}</flux:heading>
|
|
<flux:subheading>{{ $subheading ?? '' }}</flux:subheading>
|
|
|
|
<div class="mt-5 w-full max-w-lg">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</div>
|