Files
wonderful-weather/resources/views/common/errors.blade.php
foobar 27c1969aaa init
2022-08-21 21:39:06 +02:00

12 lines
294 B
PHP

@if (count($errors) > 0)
<!-- Form Error List -->
<div class="alert alert-danger">
<strong>Error!</strong>
<br><br>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif