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

9 lines
255 B
PHP

@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