Skip to content

Instantly share code, notes, and snippets.

@tadeubdev
Created January 11, 2022 00:02
Show Gist options
  • Select an option

  • Save tadeubdev/16dfffb5dc80fcdbd191b6ecdbd0193f to your computer and use it in GitHub Desktop.

Select an option

Save tadeubdev/16dfffb5dc80fcdbd191b6ecdbd0193f to your computer and use it in GitHub Desktop.
@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