@endsection @section('meta') @include('layouts.shared.meta', ['title' => $title]) @endsection @section('head-css') @if ( !isset($head_css) ) @include('layouts.shared.head-css') @else @include($head_css) @endif @include('layouts.shared.whitelabel-css') @endsection @if (!isset($sidebar)) @section('sidebar') @include('layouts.shared.customer-sidebar') @endsection @endif @section('header') @if (!isset($header)) @include('layouts.shared.customer-header', ['title' => $title]) @elseif( strpos($header, '.') !== false ) @include($header) @endif @endsection @section('content') @yield('content') @endsection @section('footer') @include('layouts.shared.footer') @endsection @section('scripts') @if (!isset($footer_script)) @include('layouts.shared.footer-script') @else @include($footer_script) @endif @endsection