You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
397 B
PHTML
16 lines
397 B
PHTML
2 years ago
|
@props(['errors'])
|
||
|
|
||
|
@if ($errors->any())
|
||
|
<div {{ $attributes }}>
|
||
|
<div class="font-medium text-red-600">
|
||
|
{{ __('Whoops! Something went wrong.') }}
|
||
|
</div>
|
||
|
|
||
|
<ul class="mt-3 list-disc list-inside text-sm text-red-600">
|
||
|
@foreach ($errors->all() as $error)
|
||
|
<li>{{ $error }}</li>
|
||
|
@endforeach
|
||
|
</ul>
|
||
|
</div>
|
||
|
@endif
|