{% extends 'base_crud.html.twig' %} {% block title %}{% trans %}update_account{% endtrans %}{% endblock title %} {% block stylesheets %} {% endblock stylesheets %} {% block body %}
{{ include('pages/nav_portal.html.twig') }} {{ include('pages/menu_portal.html.twig') }}

{% trans %}update_account{% endtrans %}

{{ form_start(formEntity, {'action': path('portal-edit-account', {id: item.getId()}), 'method': 'POST'}) }}

{% trans %}account{% endtrans %}

{% if not formEntity.vars.valid %} {%endif%}
{{ form_widget(formEntity.location) }}
{{ form_widget(formEntity.login) }}
{{ form_widget(formEntity.email) }}
{{ form_widget(formEntity.phone_number) }}
{{ form_widget(formEntity.package) }}
{{ form_widget(formEntity.expiry_date) }}
{{ form_widget(formEntity.parent) }}
{{ form_widget(formEntity.has_children) }}
{{ form_widget(formEntity.payeer) }}
{{ form_widget(formEntity.price) }}
{{ form_widget(formEntity.description) }}
{{ form_end(formEntity) }}
{% endblock body %} {% block javascripts %} {% endblock javascripts %}