10 lines
191 B
PHP
10 lines
191 B
PHP
@props(['errors'])
|
|
|
|
@if ($errors->any())
|
|
<div {{ $attributes }}>
|
|
<div class="alert alert-danger" role="alert">
|
|
{{ $errors->first() }}
|
|
</div>
|
|
</div>
|
|
@endif
|