@if (Session::has('alert'))
{{ Session::get('alert') }}
@endif
@if (Session::has('success'))
Success {{ Session::get('success') }}
@endif
@if (Session::has('status'))
{{ Session::get('status') }}
@endif
@if (Session::has('error'))
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