{{-- Logo --}} {!! \App\Helpers\ContentHelper::generatePictureElement('img/icon-2.png', 'KunciLink Logo', 'h-8') !!} KunciLink.id
{{-- Mobile menu button --}} {{-- Navigation menu --}}
  • Features
  • Faq
  • Contact
  • How It Works
{{-- Auth buttons and theme toggle --}}
{{-- More robust authentication check --}} @php $isLoggedIn = \Illuminate\Support\Facades\Auth::check(); // Debug logging \Log::info('Navigation Component Auth Check', [ 'is_logged_in' => $isLoggedIn, 'user' => \Illuminate\Support\Facades\Auth::user(), 'session_id' => session()->getId(), 'session_data' => session()->all(), 'cookie_data' => request()->cookies->all() ]); @endphp {{-- Guest user buttons --}} @if(!$isLoggedIn) SIGN UP FREE @endif {{-- Authenticated user buttons --}} @if($isLoggedIn) Dashboard
@csrf
@endif