@extends((View::exists('wrapper')) ? 'storageview::wrapper' : 'adminlte::master') @section('adminlte_css') @stack('css') @yield('css') @stop @section('body_class', 'skin-' . config('adminlte.skin', 'blue') . ' sidebar-mini ' . (config('adminlte.layout') ? [ 'boxed' => 'layout-boxed', 'fixed' => 'fixed', 'top-nav' => 'layout-top-nav' ][config('adminlte.layout')] : '') . (config('adminlte.collapse_sidebar') ? ' sidebar-collapse ' : '') . (config('adminlte.remove_header_footer_margin') ? ' remove-left-margins' : '')) @section('body')
@if(config('adminlte.layout') == 'top-nav')
@if(config('adminlte.layout') != 'top-nav') @endif
@if($masquerade)
You are masquerading as {{\Session::get('fid')}}. Logout & return to Admin Area.
@endif @if(config('adminlte.layout') == 'top-nav')
@endif
@yield('content_header') {!! Breadcrumbs::renderIfExists() !!}
@include('flash::message') @if(Session::has('message')) {!! Session::get('message') !!} @endif @if(count($errors))
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@if(config('adminlte.layout') == 'top-nav')
@endif
@if(config('adminlte.show_footer')) @endif
@stop @section('adminlte_js') @if(View::exists('wrapper')) @else @endif @stack('js') @yield('js') @stop