dokter-telekonsultasi/resources/views/components/auth-validation-errors.blade.php
2025-03-26 10:01:46 +07:00

10 lines
191 B
PHP

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