@stack('head')
E
{{ config('app.name', 'Laravel') }}
General
Home
@if(Auth::user()->isAdmin())
Administration
Dashboard
Users
Orders
Invoices
Testimonials
@else
My Account
Dashboard
Quote Requests
Orders
Invoices
@endif
Account
Profile Settings
@csrf
Logout
@yield('page-title', 'Dashboard')
@include('partials.notifications')
{{ Auth::user()->name }}
{{ Auth::user()->email }}
{{ strtoupper(substr(Auth::user()->name, 0, 1)) }}
{{ Auth::user()->name }}
{{ Auth::user()->email }}
Profile Settings
🌙
☀️
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@yield('content')
@stack('scripts')