Files
firefly-iii/resources/views/form/object-group.blade.php
Sander Dorigo 533eebc8d4 expand views
2026-06-24 11:18:54 +02:00

12 lines
582 B
PHP

<div class="row mb-3" id="{{ $name }}_holder">
<div class="input-group has-validation">
<label for="{{ $options['id'] }}" class="col-sm-3 col-form-label has-validation">{{ $label }}</label>
<div class="col-sm-9">
{{ Html::input('text', $name, $value)->id($options['id'])->class($errors->has($name) ? 'is-invalid form-control' : 'form-control')->attribute('autocomplete','off')->attribute('spellcheck','false')->attribute('placeholder', $options['placeholder']) }}
@include('form.help')
@include('form.feedback')
</div>
</div>
</div>