17 lines
190 B
PHP
17 lines
190 B
PHP
|
|
||
|
|
||
|
@if($errors->any())
|
||
|
|
||
|
<ul class="alert alert-danger">
|
||
|
|
||
|
@foreach($errors->all() as $error)
|
||
|
|
||
|
<li style="margin-left:5px;">{{ $error }}</li>
|
||
|
|
||
|
@endforeach
|
||
|
|
||
|
</ul>
|
||
|
|
||
|
@endif
|
||
|
|