Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 20, 2019 17:45
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save parzibyte/2eccf18b2dcbc15afc9116b6adadf71e to your computer and use it in GitHub Desktop.
@if(!empty($errors->all()))
<div class="notification is-danger">
<h4 class="is-size-4">Por favor, valida los siguientes errores:</h4>
<ul>
@foreach ($errors->all() as $mensaje)
<li>
{{$mensaje}}
</li>
@endforeach
</ul>
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment