@include('layouts.partials.head')
@include('layouts.partials.nav') @include('layouts.partials.header')
@if(session('message'))
{{ session('message') }}
@endif @if($errors->count() > 0)
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif @yield('content')
@include('layouts.partials.footer-scripts')