The form I’d like to modify populates this field (balance amount) upon the page appearing:
<div class="col-md-10">
<input type="text" readonly="true" class="form-control input-md" type="number" placeholder="00" value="{{balance}}">
</div>
I’d like to divide that balance amount by 2, and have that result display it’s own seperate form field.
Any help with this is appreciated.