{% macro textbox( field, label=None, hint=False, highlight_placeholders=False, autofocus=False, autosize=False, colour_preview=False, help_link=None, help_link_text=None, width='2-3', suffix=None, safe_error_message=False, rows=8, extra_form_group_classes='', placeholder='' ) %}
{% if field.errors %} {% endif %} {% if hint %}
{{ hint }}
{% endif %} {% if highlight_placeholders or autosize %} {% set field_class = 'usa-textarea form-control-{} textbox-highlight-textbox'.format(width) %} {% else %} {% set field_class = 'form-control-{} {}'.format(width, 'textbox-right-aligned' if suffix else '') %} {% endif %} {% set field_class = 'form-control ' + field_class + ( ' form-control-error' if field.errors else '' ) %} {{ field( class=field_class, data_module='enhanced-textbox' if highlight_placeholders or autosize else '', data_highlight_placeholders='true' if highlight_placeholders else 'false', rows=rows|string, placeholder=placeholder, **kwargs ) }} {% if suffix %} {{ suffix }} {% endif %} {% if help_link and help_link_text %} {% endif %}
{% endmacro %}