2023-09-09 00:07:46 +10:00
|
|
|
<span class="col-6 mt-auto mx-auto text-center align-bottom">
|
|
|
|
@if($errors->count())
|
|
|
|
<span class="btn btn-sm btn-danger" role="alert">
|
|
|
|
There were errors with the submission.
|
|
|
|
<ul>
|
|
|
|
@foreach($errors->all() as $error)
|
2024-05-23 22:38:03 +10:00
|
|
|
<li>{!! $error !!}</li>
|
2023-09-09 00:07:46 +10:00
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</span>
|
|
|
|
@endif
|
|
|
|
</span>
|