Skip to content

Instantly share code, notes, and snippets.

@renton18
Created February 22, 2019 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renton18/229ee96aab961976160d344455319aea to your computer and use it in GitHub Desktop.
Save renton18/229ee96aab961976160d344455319aea to your computer and use it in GitHub Desktop.
@if (count($errors) > 0)
<!-- Form Error List -->
<div class="alert alert-danger">
<div><strong>エラー</strong></div>
<div>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment