@stack('styles')
{{-- SIDEBAR --}} {{-- OVERLAY mobile --}} {{-- MAIN --}}
{{-- Top bar --}}
@yield('page-title', 'Dashboard')
{{ now()->isoFormat('dddd, D MMMM YYYY') }}
{{-- Alerts --}}
@foreach(['success' => 'emerald', 'warning' => 'amber', 'error' => 'red'] as $type => $color) @if(session($type))
{{ $type === 'success' ? 'โœ…' : ($type === 'warning' ? 'โš ๏ธ' : 'โŒ') }} {{ session($type) }}
@endif @endforeach @if($errors->any())
โŒ Terdapat kesalahan:
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif
{{-- Content --}}
@yield('content')
@stack('scripts')