@include('layouts.header') {{-- Page Wrapper --}}
@auth @include('layouts.sidebar') @endauth {{-- Content Wrapper --}}
{{-- Main Content --}}
@auth @include('layouts.topbar') @endauth @yield('content-master') {{-- For special things to be done outside the container --}}
@if(!Route::is('front'))

@yield('title', 'Page Title')

@yield('title-flex')
@if(Session::has('success') OR isset($success)) @endif @if ($errors->any())
@if(count($errors) > 1)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@else {{ $errors->first() }} @endif
@endif @endif @yield('content')
{{-- End of Main Content --}}
{{-- End of Content Wrapper --}}
{{-- End of Page Wrapper --}} {{-- JavaScripts--}} @vite(['resources/js/app.js']) @include('scripts.global') @yield('js')