freescout/freescout-dist/resources/views/partials/field_error.blade.php

9 lines
255 B
PHP
Raw Permalink Normal View History

2023-12-22 19:40:32 +00:00
@if ($errors->has($field))
<span class="help-block has-error">
@if (empty($unescaped))
<strong>{{ $errors->first($field) }}</strong>
@else
<strong>{!! $errors->first($field) !!}</strong>
@endif
</span>
@endif