@props([ 'code', 'title', 'message', 'path' => null, 'isAuthenticated' => null, 'tone' => 'teal', 'icon' => 'fa-compass', ]) @php $signedIn = $isAuthenticated ?? auth()->check(); @endphp @once @push('stylesheets') @endpush @endonce

{{ $title }}

{{ $message }}

@if ($path)
You tried to open /{{ ltrim($path, '/') }}
@endif
@if ($signedIn) Back to dashboard @else Sign in @endif