You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
397 B
15 lines
397 B
@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
|
|
|