{% if item.type in ['StringField', 'TextAreaField', 'PasswordField'] %}
{{ item.label(class=theme.form.input_label_class, style=theme.form.input_label_style) }}
{% if item.errors %}
{% include 'form/formError.html' %}
{% else %}
{{ item(class=theme.form.input_class, style=theme.form.input_style) }}
{% endif %}
{% endif %}