@if ($errors->any())
@foreach ($errors->all() as $error)
Error! {{ $error }}
@endforeach
@endif
@if( Session::has('warning') )
Warning! {{ Session::get('warning') }}
@endif
@if( Session::has('error') )
Error! {{ Session::get('error') }}
@endif
@if( Session::has('info') )
Information! {{ Session::get('info') }}
@endif
@if( Session::has('success') )
Success! {{ Session::get('success') }}
@endif