@if (Session::has('alert'))
x
{{ Session::get('alert') }}
@endif @if (Session::has('success'))
x
Success
{{ Session::get('success') }}
@endif @if (Session::has('status'))
x
{{ Session::get('status') }}
@endif @if (Session::has('error'))
x
Whoops!
There were some problems.
@if (is_array(Session::get('error')))
{{ implode(' ', Session::get('error')) }}
@else
{{ Session::get('error') }}
@endif
@endif @if (isset($errors) && is_countable($errors) && count($errors) > 0)
Whoops!
There were some problems with your input.
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif