{{ form_row(form.name) }}
{% if not isCodPayment %}
{{ form_row(form.price) }}
{{ form_row(form.generalDiscount) }}
{% endif %}
{{ form_row(form.logo) }}
{{ form_row(form.enabled) }}
{{ _self.translationCard(form.paymentTranslations) }}
{% macro translationCard(paymentTranslations) %} {% for translationField in paymentTranslations %}
{% for field in translationField %} {{ form_row(field) }} {% endfor %}
{% endfor %} {% endmacro %}