{{-- Shared flash / validation banner (Phase 1 of the UI overhaul). Rendered once inside the layout container, above @yield('content'). Reads standard Laravel session keys + the validation error bag, so any controller that does ->with('success', '...') or returns validation errors gets consistent feedback with no per-page work. --}} @if (session('success'))
{{ session('success') }}
@endif @if (session('status'))
{{ session('status') }}
@endif @if (session('error')) @endif @if ($errors->any()) @endif