I am trying to change the checkbox template which at the moment looks like
'checkbox' => '<input type="checkbox" name="{{name}}" value="{{value}}"{{attrs}}>',
'checkboxWrapper' => '{{label}}',
which generates html like
<div class="form-group">
<input class="form-control" type="hidden" name="active" value="0">
<label for="active">
<input type="checkbox" name="active" value="1" id="active">
Active
</label>
</div>
</div>
But what I need is that the code should look like
<div class="checkbox m-b-15">
<input class="form-control" type="hidden" name="active" value="0">
<label>
<input type="checkbox" name="active" value="1" id="active">
<i class="input-helper"></i>
Active
</label>
</div>
How should I actually change the template and which templates of FormHelper so that the code look like I need?