@include('layouts.core._head') @include('layouts.core._script_vars')
@if (\Auth::check())
{{ trans('messages.logout') }}
@endif
@foreach (['danger', 'warning', 'info', 'error'] as $msg) @php $class = $msg; if ($msg == 'error') { $class = 'danger'; } @endphp @if(Session::has('alert-' . $msg))
{{ trans('messages.' . $msg) }}

{!! preg_replace('/[\r\n]+/', ' ', Session::get('alert-' . $msg)) !!}

@endif @endforeach @yield('content')
{!! \Acelle\Model\Setting::get('custom_script') !!}