{{-- ========================================================================= File: resources/views/layouts/manager.blade.php ========================================================================= --}} @yield('title','Панель менеджера') {{-- Layout styles --}} {{-- ✅ AI Assistant styles --}} @stack('head')
{{-- SIDEBAR --}} {{-- MAIN --}}
{{-- TOPBAR --}}

@yield('page_title','Панель менеджера')

@yield('page_actions')
{{-- CONTENT --}}
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $e)
{{ $e }}
@endforeach
@endif @include('partials.impersonation-banner') @yield('content')
{{-- ✅ Manager token for AI-protected endpoints --}} {{-- ========================= ✅ AI Assistant widget ========================== --}} {{-- ✅ AI Assistant JS --}} @stack('body') @stack('scripts')