templates/web/customer/form_field/form_field_label.twig line 1

Open in your IDE?
  1. <div class="{{ this.getLabelContainerClass() }}">
  2.   <label for="{{ this.getFieldId() }}">
  3.     {{ this.getFormattedLabel() }}
  4.     {% if this.hasLabelHelp() %}
  5.       {{ widget('\\XLite\\View\\Tooltip', text=t(this.getParam('labelHelp')), helpWidget=this.getParam('labelHelpWidget'), isImageTag='true', className='help-icon') }}
  6.     {% endif %}
  7.   </label>
  8. </div>
  9. <div class="star">
  10.   {% if this.getParam('required') %}*{% else %}&nbsp;{% endif %}
  11. </div>