@stack('styles') @php $nav = [ [ 'section' => $isRtl ? 'عام' : 'General', 'items' => [ ['route' => 'admin.dashboard', 'icon' => 'fa-gauge', 'label' => $isRtl ? 'الرئيسية' : 'Dashboard'], ], ], [ 'section' => $isRtl ? 'المحتوى' : 'Content', 'items' => [ [ 'route' => 'admin.pages.index', 'icon' => 'fa-file-lines', 'label' => $isRtl ? 'الصفحات' : 'Pages', ], [ 'route' => 'admin.services.index', 'icon' => 'fa-briefcase', 'label' => $isRtl ? 'الخدمات' : 'Services', ], [ 'route' => 'admin.banks.index', 'icon' => 'fa-building-columns', 'label' => $isRtl ? 'البنوك' : 'Banks', ], ['route' => 'admin.offers.index', 'icon' => 'fa-tags', 'label' => $isRtl ? 'العروض' : 'Offers'], [ 'route' => 'admin.articles.index', 'icon' => 'fa-newspaper', 'label' => $isRtl ? 'المقالات' : 'Articles', ], [ 'route' => 'admin.faqs.index', 'icon' => 'fa-circle-question', 'label' => $isRtl ? 'الأسئلة الشائعة' : 'FAQs', ], [ 'route' => 'admin.testimonials.index', 'icon' => 'fa-comment-dots', 'label' => $isRtl ? 'آراء العملاء' : 'Testimonials', ], [ 'route' => 'admin.trust-metrics.index', 'icon' => 'fa-chart-simple', 'label' => $isRtl ? 'مؤشرات الثقة' : 'Trust Metrics', ], [ 'route' => 'admin.steps.index', 'icon' => 'fa-list-ol', 'label' => $isRtl ? 'كيف نعمل' : 'How It Works', ], ], ], [ 'section' => $isRtl ? 'الموقع' : 'Site', 'items' => [ ['route' => 'admin.menus.index', 'icon' => 'fa-bars', 'label' => $isRtl ? 'القوائم' : 'Menus'], [ 'route' => 'admin.social.index', 'icon' => 'fa-share-nodes', 'label' => $isRtl ? 'وسائل التواصل' : 'Social Links', ], [ 'route' => 'admin.content-blocks.index', 'icon' => 'fa-puzzle-piece', 'label' => $isRtl ? 'محتوى الصفحات' : 'Page Content', ], [ 'route' => 'admin.settings.index', 'icon' => 'fa-gear', 'label' => $isRtl ? 'الإعدادات' : 'Settings', ], ['route' => 'admin.media.index', 'icon' => 'fa-image', 'label' => $isRtl ? 'الوسائط' : 'Media'], ], ], [ 'section' => $isRtl ? 'النشاط' : 'Activity', 'items' => [ [ 'route' => 'admin.financing-requests.index', 'icon' => 'fa-hand-holding-dollar', 'label' => $isRtl ? 'طلبات التمويل' : 'Financing Requests', ], [ 'route' => 'admin.applications.index', 'icon' => 'fa-file-signature', 'label' => $isRtl ? 'الطلبات القديمة' : 'Applications', ], [ 'route' => 'admin.contacts.index', 'icon' => 'fa-envelope', 'label' => $isRtl ? 'رسائل التواصل' : 'Contact Messages', ], ], ], [ 'section' => $isRtl ? 'المستخدمون' : 'Users', 'items' => [ ['route' => 'admin.users.index', 'icon' => 'fa-users', 'label' => $isRtl ? 'المستخدمون' : 'Users'], ], ], ]; @endphp

@yield('page_title', $isRtl ? 'لوحة التحكم' : 'Dashboard')

@if (session('success'))
{{ session('success') }}
@endif @if (session('error') || $errors->any())
{{ session('error') ?? ($isRtl ? 'يوجد أخطاء في البيانات المدخلة' : 'Please correct the errors below') }}
@endif @yield('content')
@stack('scripts')