templates/Form/Includes/form-control-label.html.twig line 1

Open in your IDE?
  1. <label class="form-control-label {{ labelModifier|default('') }}" for="{{ id }}">
  2.     {{ label }}
  3.     {% if required|default(false) %}
  4.         {% if not noRequireHelper | default(false) %}
  5.             <span title="{{ 'sr.Pflichtfeld'|trans }}" aria-label="{{ 'sr.Pflichtfeld'|trans }}">*</span>
  6.         {% endif %}
  7.     {% endif %}
  8. </label>