8 lines
191 B
PHP
Executable File
8 lines
191 B
PHP
Executable File
@if ($errors->any())
|
|
<ul class="alert alert-danger" style="padding-left:30px;">
|
|
@foreach ($errors->all() as $error)
|
|
<li>{!! $error !!}</li>
|
|
@endforeach
|
|
</ul>
|
|
@endif
|