# config/packages/twig.yaml
twig:
form_themes:
- 'form/custom_types.html.twig'
- '...'
{# templates/form/custom_types.html.twig #}
{% block postal_address_row %}
{% for child in form.children if not child.rendered %}
<div class="form-group">
{{ form_label(child) }}
{{ form_widget(child) }}
{{ form_help(child) }}
{{ form_errors(child) }}
</div>
{% endfor %}
{% endblock %}
получаешь дифф ( https://github.com/sebastianbergmann/diff/blob/mas... )
создаёшь функцию для твига и выводишь так как хочется ( https://twig.symfony.com/doc/3.x/advanced.html#id2 )