mirror of https://github.com/kcal-app/kcal.git
13 lines
362 B
PHP
13 lines
362 B
PHP
@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
|