@php $isAdmin = request()->is('admin') || request()->is('admin/*'); $homeUrl = route('home'); $homeLabel = 'Back to Home'; $secondaryUrl = null; $secondaryLabel = null; if ($isAdmin && auth('admin')->check()) { $secondaryUrl = route('admin.dashboard'); $secondaryLabel = 'Admin Dashboard'; } elseif (auth('student')->check()) { $secondaryUrl = route('student.dashboard'); $secondaryLabel = 'Student Dashboard'; } elseif (auth('instructor')->check()) { $secondaryUrl = route('instructor.dashboard'); $secondaryLabel = 'Instructor Dashboard'; } @endphp
Ageless Institute

Page not found

The page you are looking for doesn’t exist, was moved, or the link may be incorrect.

{{ $homeLabel }} @if($secondaryUrl) {{ $secondaryLabel }} @else Go Back @endif

Ageless Institute of Aesthetics