{% extends '@kohinos/installation/layout.html.twig' %} {% block step_title %}Configuration des paiements traditionnels{% endblock %} {% block step_content %}

Configurez les méthodes de paiement traditionnelles (chèque et virement) pour les cotisations et achats de e-mlc.

{{ form_start(form, {'attr': {'class': 'installation-form'}}) }}

Paiement par chèque

{{ form_widget(form.allow_cheque) }} {{ form_label(form.allow_cheque) }}
{{ form_errors(form.allow_cheque) }} {% if form.allow_cheque.vars.help is defined %} {{ form.allow_cheque.vars.help|raw }} {% endif %}
{{ form_label(form.cheque_order) }} {{ form_widget(form.cheque_order) }} {{ form_errors(form.cheque_order) }} {% if form.cheque_order.vars.help is defined %} {{ form.cheque_order.vars.help|raw }} {% endif %}
{{ form_label(form.cheque_address) }} {{ form_widget(form.cheque_address) }} {{ form_errors(form.cheque_address) }} {% if form.cheque_address.vars.help is defined %} {{ form.cheque_address.vars.help|raw }} {% endif %}

Paiement par virement

{{ form_widget(form.allow_virement) }} {{ form_label(form.allow_virement) }}
{{ form_errors(form.allow_virement) }} {% if form.allow_virement.vars.help is defined %} {{ form.allow_virement.vars.help|raw }} {% endif %}
{{ form_label(form.virement_iban) }} {{ form_widget(form.virement_iban) }} {{ form_errors(form.virement_iban) }} {% if form.virement_iban.vars.help is defined %} {{ form.virement_iban.vars.help|raw }} {% endif %}
Retour
{{ form_end(form) }} {% endblock %}