@php $navItems = [ [ 'route' => 'admin.dashboard', 'patterns' => ['admin.dashboard'], 'title' => 'الرئيسية', 'description' => 'ملخص سريع', 'index' => '01', ], [ 'route' => 'admin.students.index', 'patterns' => ['admin.students.*'], 'title' => 'الطلاب المسجلون', 'description' => 'الحسابات والتفاصيل', 'index' => '02', ], [ 'route' => 'admin.allowed-students.index', 'patterns' => ['admin.allowed-students.*'], 'title' => 'المسموح لهم', 'description' => 'الأرقام والربط', 'index' => '03', ], [ 'route' => 'admin.catalog.index', 'patterns' => ['admin.catalog.*'], 'title' => 'الهيكل الأكاديمي', 'description' => 'جامعات وكليات وأقسام', 'index' => '04', ], ]; @endphp
StudentBag Admin

@yield('page-title', 'لوحة التحكم')

@yield('page-description', 'إدارة سريعة وواضحة من مكان واحد.')

مدير: {{ session(config('admin-panel.session_user_key')) }}
@csrf
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif @yield('content')
@stack('scripts')