@stack('styles')
{{ config('app.name') }}
@php $authUser = auth()->user(); @endphp {{ $authUser->name ?? '' }}
{{ strtoupper(mb_substr($authUser->name ?? 'U', 0, 1)) }}
Back to App
@if(session('success'))
{{ session('success') }}
@endif @if(session('warning'))
{{ session('warning') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif @yield('content')
@stack('scripts')