{% macro field(input, id='', prefix='', suffix='') -%}
{{input.label}} {%if id and (prefix or suffix)%}
{%if prefix%}
{{prefix}}
{%endif%} {{input()}} {%if suffix%}
{{suffix}}
{%endif%}
{%else%} {{input()}} {%endif%} {%if input.errors%}

{%for error in input.errors%} {{error}} {%endfor%}

{%endif%}
{%- endmacro %}