mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-02 04:25:11 -07:00
12 lines
561 B
PHP
12 lines
561 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::textarea($name, $value)->id($options['id'])->attribute('rows', $options['rows'])->class('form-control')->attribute('autocomplete','off')->attribute('spellcheck','false')->attribute('placeholder',$options['placeholder'] ?? '') }}
|
|
@include('form.help')
|
|
@include('form.feedback')
|
|
</div>
|
|
</div>
|
|
</div>
|