5.3 Textarea View in a new window
A textarea field is used for multiple lines of text input.
Twig: form/textarea/textarea.twig
Default example
Help text that provides additional information about the field.
Indication that the text field with required input is valid
Help text that provides additional information about the field.
Indication that the text field with required input is invalid
Help text that provides additional information about the field.
Markup
<div class="form__item">
<label for="textarea1" class="label--required">A textarea</label>
<textarea id="textarea1" aria-describedby="textareaHelp" class="{{ modifier_class }}" required></textarea>
<div role="tooltip" id="textareaHelp" class="form__description">Help text that provides additional information about the field.</div>
</div>