{{-- Self-contained CSS built from docs/DESIGN-TOKENS.md so authentication works before the asset pipeline exists. Phase 4 replaces this block with the compiled Tailwind bundle; the token values do not change. --}}
{{ config('app.name') }}
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@hasSection('foot')

@yield('foot')

@endif