@vite(['resources/css/app.css', 'resources/js/app.js'])

@yield('heading', 'Dashboard')

Welcome back, {{ auth()->user()->name }}

{{ auth()->user()->email }}

{{ auth()->user()->title ?? 'User' }}

{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
@if (session('status'))
{{ session('status') }}
@endif @yield('content')