@vite(['resources/css/app.css', 'resources/js/app.js']) {{-- Main app assets (Tailwind, Alpine, etc.) --}} {{-- Add FontAwesome or other icon libraries if your views use them --}} {{-- Consider managing FontAwesome via npm and importing it in your app.js/app.scss for better control --}} @stack('styles') {{-- For page-specific styles --}} @livewireStyles {{-- If using Livewire --}}
{{-- User Menu (Example) --}}
@hasSection('header_title')
{{-- Added mb-6 for spacing --}}

@yield('header_title')

@endif
{{-- This is where page-specific content will go --}} @yield('content') {{-- This is where module_content (via landingpage::layouts.admin) will be injected --}}
@stack('scripts') {{-- For page-specific scripts --}} @livewireScripts {{-- If using Livewire --}}