10 lines
316 B
PHP
10 lines
316 B
PHP
@if (count($errors) > 0)
|
|
<div class="alert alert-danger">
|
|
<p>There were some problems with your input.</p>
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li><i class="glyphicon glyphicon-remove"></i> {{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif |