@vite('resources/volt/scss/app.scss')
{{ __('Hello') }}, {{ auth()->user()->name ?? '' }}
@csrf
{{ __('Sign Out') }}
{!! __('Create a website for the project') !!}
@if(!empty($navigation)) @include($navigation) @endif
@yield('h1', '')
{{ auth()->user()->name ?? '' }}
{{ __('My Profile') }}
{{ __('Settings') }}
@csrf
{{ __('Logout') }}
@includeWhen($errors->any(), 'layout.private._errors', ['errors' => $errors->all()]) @includeWhen(Session::has('success'), 'layout.private._success', ['success' => Session::get('success')]) {{ $slot }}
@vite('resources/volt/js/app.js') @stack('scripts')