Created
April 21, 2017 03:56
-
-
Save corean/ce48b46ca1fe53dc7d9b1b1b2150f8e6 to your computer and use it in GitHub Desktop.
laravel session errors return $this->validate
This file contains hidden or 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 ($errors->any()) | |
<div class="alert alert-danger"> | |
<button type="button" class="close" data-dismiss="alert" aria-hidden="true" >× </button> | |
@foreach($errors->all() as $error) | |
<p>{{ $error }}</p> | |
@endforeach | |
</div> | |
@endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment