{% extends 'Common/baseAdminPannel.html.twig' %} {% block title %} {{"Agregar movimiento"}} {% endblock %} {% block body %}
{{ "Saldo de la cuenta: " }}{{ providerCreditAccount.amount|price(providerCreditAccount.currency) }}
{{ form_start(edit_form, {'attr':{'data-remote':'true', 'data-method':'POST', 'data-url':edit_form.vars.action } }) }}
{{ form_row(edit_form.type) }}
{{ form_row(edit_form.amount) }}
{% if edit_form.currencyChange is defined %}
{{ form_row(edit_form.currencyChange) }}
{{ form_row(edit_form.mxnAmount) }}
{% endif %}
{{ form_row(edit_form.comment) }}
{{ form_end(edit_form) }} {% endblock %}