mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-02 12:34:31 -07:00
12 lines
436 B
PHP
12 lines
436 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('file',$name)->id($options['id'])->attribute('multiple','multiple')->class('form-control') }}
|
|
@include('form.help')
|
|
@include('form.feedback')
|
|
</div>
|
|
</div>
|
|
</div>
|