{{ __('Dashboard') }}
{{ __('Profile') }}
@csrf {{ __('Log Out') }}
{{ __('Dashboard') }}
{{-- On affiche le nom et l'email de l'utilisateur s'il est connecté --}} @auth
{{ Auth::user()->name }}
{{ Auth::user()->email }}
@endauth {{-- Si l'utilisateur n'est pas connecté, on affiche "Invité" --}} @guest
Invité
@endguest
{{ __('Profile') }}
@csrf {{ __('Log Out') }}