Logo
    {{-- Menu untuk semua user --}} @if(Auth::guard('web')->check())
  • @csrf Dashboard
  • @csrf Prediksi
  • Riwayat Prediksi
  • @endif {{-- Menu khusus Admin --}} @if(Auth::guard('admin')->check())
  • Siswa
    • XII (1)
    • XII (2)
  • @endif {{-- Logout --}}
  • @csrf Logout
    {{--
    • Mail
    • No new mail
  • --}} {{--
    • Notifications
    • No notification available
  • --}}
{{ Auth::user()->name }}
{{--

{{ Auth::user()->role }}

--}}
  • Hello, {{ Auth::user()->name }}!
  • My Profile

@yield('content')
@if(session('error'))
{{ session('error') }}
@endif