//The below is HTML from the Widget: Vendor Validation
//It was modifed per DMND0063775 Make ACH fields mandatory
//This is the HTML around the field: Financial Institution Name

 <div ng-if="data.terms == 'ach'" class ="row">
           <div class="col-md-6">
              <div class="form-group">
                <label for="cs_email">Financial Institution Name*</label>
                <input ng-model="data.financial_name" id="rNumber" placeholder="" type="text" name="Financial Institution Name" class="form-control" required="required">
                <div class="help-block with-errors"></div>
              </div>
            </div>
            </div>