<form action="#" class="user-form d-none">
  <label class="form-row__label form-row__label_required user-form__required-field" for="#">Required Field</label>
  {{#each fields}}
    {{> form-row
      type=this.type
      dropdown=this.dropdown
      id=this.id
      label=this.label
      value=this.value
      placeholder=this.placeholder
      input-mod=this.modificator
      required=this.required
      row-mod=this.rowMod
      options=this.options
      selectedIndex=this.selectedIndex
      data-tag=this.dataTag
    }}
  {{/each}}
  {{#if isInstaller}}
    <input id="tradeTypeHidden" type="hidden" name="tradeTypeValue" value="installer" data-tag="trade-type-value">
  {{/if}}
  <div class="user-form__ctas">
    {{#each buttons}}
      <button class="{{this.class}}" type="{{this.type}}" data-action="{{this.dataAction}}">
        <span class="btn__text">{{this.text}}</span>
      </button>
    {{/each}}
  </div>
</form>
