@stack('styles')
@yield('title', 'Dashboard')
@csrf {{ auth()->user()->name ?? '' }}
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @yield('content')
@stack('scripts')