Last active
October 9, 2017 17:44
-
-
Save chetans9/bf87bcd5cba77de69798b0e195203728 to your computer and use it in GitHub Desktop.
laravel Validation errors global include file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if (count($errors) > 0) | |
<div class="alert alert-danger"> | |
<strong>Whoops!</strong> There were some problems with your input.<br><br> | |
<ul> | |
@foreach ($errors->all() as $error) | |
<li>{{ $error }}</li> | |
@endforeach | |
</ul> | |
</div> | |
@endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment