Created
January 11, 2022 00:02
-
-
Save tadeubdev/16dfffb5dc80fcdbd191b6ecdbd0193f to your computer and use it in GitHub Desktop.
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"> | |
| <p><strong>Opps Something went wrong</strong></p> | |
| <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