custom/plugins/MoorlForms/src/Resources/views/plugin/moorl-fb/component/element/textarea.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@MoorlForms/plugin/moorl-fb/component/element/field.html.twig" %}
  2. {% block input_el %}
  3.     <textarea
  4.             name="{{ elementTechnicalName }}"
  5.             id="{{ elementId }}"
  6.             placeholder="{{ element.translated.placeholder }}"
  7.             {% if element.maxlength %}maxlength="{{ element.maxlength }}"{% endif %}
  8.             {% if element.required %}required{% endif %}
  9.             {% if element.disabled %}readonly{% endif %}
  10.             class="form-control">{{ elementValue }}</textarea>
  11. {% endblock %}