{{-- ===== SIDEBAR ===== --}} {{-- ===== MAIN WRAPPER ===== --}}
{{-- TOP NAVBAR --}}
@yield('title', 'Dashboard')
{{-- PAGE CONTENT --}}
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif @yield('content')