{% if field.is_readonly %}
{% include "unfold/helpers/field_readonly_value.html" %}
{% else %}
{{ field.field }}
{% endif %}
{% if field.field.help_text and not field.is_checkbox %}
{% include "unfold/helpers/help_text.html" with help_text=field.field.help_text %}
{% endif %}
{% if field.errors %}
{{ field.errors }}
{% endif %}