flexisip-account-manager/flexiapi/resources/views/parts/errors.blade.php
Timothée Jaussoin ec3f123c9a Various UI fixes
2023-08-03 16:07:25 +00:00

7 lines
211 B
PHP

@if (isset($errors) && isset($name) && count($errors->get($name)) > 0)
@foreach ($errors->get($name) as $error)
<small class="error">
{{ $error }}
</small>
@endforeach
@endif