12345678910111213141516171819 |
- @if (count($errors) > 0)
- <div class="alert alert-danger">
- {{--<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>--}}
- @if(is_object($errors))
- @foreach($errors->all() as $error)
- <strong>{{ $error }}</strong><br>
- @endforeach
- @elseif(is_array($errors))
- @foreach($errors as $error)
- <strong>{{ $error }}</strong><br>
- @endforeach
- @else
- <strong>{{ $errors }}!</strong>
- @endif
- </div>
- @endif
|