basic.blade.php 238 B

12345678910
  1. @if (count($errors) > 0)
  2. <div class="alert alert-danger">
  3. <strong>Whoops!</strong> There were some problems with your input.<br><br>
  4. <ul>
  5. @foreach ($errors->all() as $error)
  6. <li>{{ $error }}</li>
  7. @endforeach
  8. </ul>
  9. </div>
  10. @endif