12 lines
237 B
PHP
12 lines
237 B
PHP
@if(count($errors))
|
|
<div class="form-group">
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach($errors->all() as $error)
|
|
<li>{{$error}}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
@endif
|