mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-02 04:25:11 -07:00
16 lines
607 B
PHP
16 lines
607 B
PHP
<div class="row mb-3" id="{{ $name }}_holder">
|
|
<div class="col-sm-9 offset-sm-3">
|
|
<div class="form-check has-validation">
|
|
{{ Html::checkbox($name, $options['checked'], $value)->class($inputClasses)->id($options['id']) }}
|
|
<label class="form-check-label" for="{{ $options['id'] }}">
|
|
{{ $label }}
|
|
</label>
|
|
@if(array_key_exists('small', $options) && true === $options['small'])
|
|
TODO SMALL!!!!!!
|
|
@endif
|
|
@include('form.help')
|
|
@include('form.feedback')
|
|
</div>
|
|
</div>
|
|
</div>
|