• Foto Profil @if (Auth::check()) @endif
    Foto Profil @if (Auth::check()) @endif
    {{ Auth::check() ? Auth::user()->name : 'Guest' }}
    {{ Auth::check() && Auth::user()->roles->isNotEmpty() ? Auth::user()->roles->first()->name : 'No Role' }}

    My Profile
    @if (auth()->check()) imgLogout
    @csrf
    @else imgLogin @endif
My Profile @if (auth()->check()) Logout
@csrf
@else Login @endif