fixed user/admin settings page error

This commit is contained in:
Naser Mansour
2026-01-08 19:21:47 +02:00
parent dfee2ff5c8
commit 508ce8f918
6 changed files with 23 additions and 7 deletions
@@ -1,10 +1,10 @@
<div class="flex items-start max-md:flex-col">
<div class="me-10 w-full pb-4 md:w-[220px]">
<flux:navlist>
<flux:navlist.item :href="route('profile.edit')" wire:navigate>{{ __('Profile') }}</flux:navlist.item>
<flux:navlist.item :href="route('user-password.edit')" wire:navigate>{{ __('Password') }}</flux:navlist.item>
<flux:navlist.item :href="route('profile.edit')" wire:navigate>{{ __('navigation.profile') }}</flux:navlist.item>
<flux:navlist.item :href="route('user-password.edit')" wire:navigate>{{ __('navigation.password') }}</flux:navlist.item>
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
<flux:navlist.item :href="route('two-factor.show')" wire:navigate>{{ __('Two-Factor Auth') }}</flux:navlist.item>
<flux:navlist.item :href="route('two-factor.show')" wire:navigate>{{ __('navigation.two_factor') }}</flux:navlist.item>
@endif
</flux:navlist>
</div>