@foreach (['success', 'error', 'notice', 'info', 'legacy'] as $msgType)
@if (Session::get($msgType))
@if (is_array(Session::get($msgType)))
@foreach (Session::get($msgType) as $message)
×{!! $message !!}
@endforeach
@else
×{!! Session::get($msgType) !!}
@endif
@endif
@endforeach
@if (Session::has('errors'))
@foreach (Session::get('errors')->all() as $message)
×{!! $message !!}
@endforeach
@endif