flexisip-account-manager/flexiapi/resources/views/parts/errors.blade.php
Timothée Jaussoin fc96338bfb Redesign the UI
2023-06-09 08:24:49 +00:00

7 lines
197 B
PHP

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