{{-- Name: plain.blade Author: AL Created: 2015-11-17 Description: This is plain template to use on guest pages. Updated by: Description: --}} @yield('_pageTitle') {{-- Create a hook in --}} @yield('header')
{{-- If main-right yield is empty we will stretch main-left to full width. --}} @if (trim($__env->yieldContent('main-right')) == false)
{{-- Main content --}} @yield('main-left')
@else
{{-- Main content --}} @yield('main-left')
{{-- Right sidebar --}} @yield('main-right')
@endif
@include('partials.alert') {{-- Create a hook for scripts --}} @yield('footer-script')