@yield('title-content') @include('layouts.dependency[favicon]') @yield('css')
@include('dashboard.partials.header') @include('dashboard.partials.sidebar')

Logedin as:{{ auth()->user()->username }}

@if (session('message'))
{{ session('message') }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('error'))
{{ session('error') }}
@endif @if (session('warning'))
{{ session('warning') }}
@endif
@yield('content')
@include('dashboard.partials.footer')
@yield('modals') @yield('scripts') {{-- ID PRODUCTION --}}