@include('layouts.header')
@include('layouts.topbar') @include('layouts.lftsidebar')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }}

@endif @endforeach
@if($errors->has())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@include('layouts.footer')