@include('partials.dashboard.head')
@include('partials.dashboard.header')
@include('partials.dashboard.sidebar')
@include('partials.dashboard.subheader')
@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if ($errors->count() > 0)
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif @yield('content')
{!! Form::open(['route' => 'auth.logout', 'style' => 'display:none;', 'id' => 'logout']) !!}
Logout
{!! Form::close() !!}
{{-- @include('partials.dashboard.footer')--}}
@include('partials.javascripts')