list
logo Faculty Documentation Portal
@if (!Auth::guest())
    @php $user = Auth::user(); $imagePath = $user->profile_image; $imageUrl = asset('assets/frontend/images/user.png'); // Default if ($imagePath) { if (Str::startsWith($imagePath, ['http://', 'https://'])) { $imageUrl = $imagePath; } else { $imageUrl = Storage::disk('public')->url($imagePath); } } @endphp profile {{ Auth::user()->name }}
    • Profile

    • @csrf
@endif @yield('login')