@if(Session::has('message'))
Notificación! {{Session::get('message')}}
@endif
@if(Session::has('alert'))
Alerta: {{Session::get('alert')}}
@endif
@if(isset($errors) && count($errors->all())>0)
Error:
@foreach($errors->all('- :message
') as $message)
{{$message}}
@endforeach
@endif
@if(Session::has('error'))
{{ Session::get('error') }}
@endif