{{-- Tailwind CDN --}} {{-- Font Awesome --}} {{-- Google Fonts --}} {{-- Overlay --}} {{-- ── SIDEBAR ── --}} {{-- ── MAIN WRAPPER ── --}}
{{-- Topbar --}}
@yield('header', 'Dashboard')
{{-- Breadcrumb --}} @hasSection('breadcrumb') @endif
{{-- Notif --}}
{{-- User dropdown --}}
{{ strtoupper(substr(Auth::user()->name ?? 'U', 0, 1)) }}

{{ Auth::user()->name }}

{{ Auth::user()->email }}

@csrf
{{-- Page Content --}}
{{-- Flash Messages --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if(session('info'))
{{ session('info') }}
@endif @if($errors->any() && !$errors->hasBag('form'))
Terdapat kesalahan:
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif @yield('content')
@stack('scripts')