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