mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 10:38:35 +00:00
9 lines
181 B
PHP
9 lines
181 B
PHP
@if ($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|