{% extends 'common/layout.html.twig' %}
{% block content %}
<div class='container groupeshow mt-5 mb-5' style='max-width:800px;'>
<h4>{{ title }} :</h4>
{# <h5>{{ 'Mon compte'|trans }} : {{compte}}</h5> #}
{{form_start(form)}}
{{ form_row(form.expediteur) }}
{{ form_row(form.destinataire) }}
{{ form_row(form.montant) }}
{% if form.moyen is defined %}
{{ form_row(form.moyen) }}
{% endif %}
{{ form_row(form.reference) }}
{{ form_row(form.save) }}
{{form_end(form)}}
</div>
{% endblock %}