@vite(['resources/css/app.css', 'resources/js/madar-app.js']) @stack('head') @php $nav = [ ['route' => 'web.dashboard', 'label' => 'الرئيسية', 'icon' => '🏠'], ['route' => 'web.chat', 'label' => 'محادثة AI', 'icon' => '💬'], ['route' => 'web.images', 'label' => 'توليد الصور', 'icon' => '🎨'], ['route' => 'web.files', 'label' => 'تحليل الملفات', 'icon' => '📄'], ['route' => 'web.tools', 'label' => 'أدوات AI', 'icon' => '⚡'], ['route' => 'web.tools.text-analysis', 'label' => 'تحليل النص', 'icon' => '🔍'], ['route' => 'web.rewards', 'label' => 'المكافآت', 'icon' => '🎁'], ['route' => 'web.billing', 'label' => 'الاشتراك والدفع', 'icon' => '💳'], ['route' => 'web.settings', 'label' => 'الإعدادات', 'icon' => '⚙️'], ]; @endphp

@yield('page_title', 'لوحة التحكم')

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif @yield('content')
@stack('scripts')