errors.blade.php 562 B

12345678910111213141516171819
  1. @if (count($errors) > 0)
  2. <div class="alert alert-danger">
  3. {{--<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>--}}
  4. @if(is_object($errors))
  5. @foreach($errors->all() as $error)
  6. <strong>{{ $error }}</strong><br>
  7. @endforeach
  8. @elseif(is_array($errors))
  9. @foreach($errors as $error)
  10. <strong>{{ $error }}</strong><br>
  11. @endforeach
  12. @else
  13. <strong>{{ $errors }}!</strong>
  14. @endif
  15. </div>
  16. @endif