Main Menu
@if (!auth()->check()) {{-- Unauthenticated: Login section --}}
Login

Sign up to get started

@else {{-- Authenticated: User profile section --}}
{{ Auth::user()->username }}
{{ Auth::user()->username ?: Auth::user()->email }}
{{ Auth::user()->email }}
@endif
@if (!auth()->check()) {{-- Unauthenticated action buttons --}} GET A QUOTE MY TRACKING SIGN IN @else {{-- Authenticated action buttons --}} @if (auth()->user()->role_id == 2 && auth()->user()->is_active == 1) MY QUOTE @endif @if (auth()->user()->category != 'Individual')
Dashboard @if (auth()->user()->tracking_enabled) Tracking @else Tracking @endif
@endif
@csrf
@endif