File: //home/globfdxw/www/wp-content/plugins/give/src/Form/LegacyConsumer/templates/textarea.html.php
<?php
/** @var Give\Framework\FieldsAPI\Textarea $field */ ?>
<?php
/** @var string $fieldIdAttribute */ ?>
<textarea
name="<?php
echo $field->getName(); ?>"
id="<?php
echo $fieldIdAttribute; ?>"
<?php
echo $field->isRequired() ? 'required' : ''; ?>
<?php
echo $field->isReadOnly() ? 'readonly' : ''; ?>
<?php
echo ($maxLength = $field->getMaxLength()) ? "maxlength=\"$maxLength\"" : ''; ?>
>
<?php
echo $field->getDefaultValue(); /* Whitespace is important. Do not indent. */ ?>
</textarea>