@yield('page_title', 'Dashboard Siswa')

{{ auth()->user()->name }} Siswa - Kelas {{ auth()->user()->siswaProfile?->kelas ?? '-' }}
Profile
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if (isset($errors) && $errors->any())
Periksa kembali input:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')