{% extends '@SyliusShop/Account/layout.html.twig' %} {% form_theme form '@SyliusShop/Form/theme.html.twig' %} {% block breadcrumb %}

{{ 'sylius.ui.personal_information'|trans }}

{% endblock %} {% block subcontent %}

{{ 'sylius.ui.your_profile'|trans }}

{{ 'sylius.ui.edit_your_personal_information'|trans }}

{{ form_start(form, {'action': path('sylius_shop_account_profile_update'), 'attr': {'novalidate': 'novalidate'}}) }} {{ sylius_template_event('sylius.shop.account.profile.update.after_content_header', {'customer': customer, 'form': form}) }}
{{ form_row(form.firstName, {'attr' : {'class' : 'w-100 form-control'}}) }}
{{ form_row(form.lastName, {'attr' : {'class' : 'w-100 form-control'}}) }}
{{ form_row(form.email, {'attr' : {'class' : 'w-100 form-control'}}) }}
{{ form_row(form.birthday, {'attr' : {'class' : 'w-100 form-control'}}) }}
{{ form_row(form.gender, {'attr' : {'class' : 'w-100 form-control'}}) }}
{{ form_row(form.phoneNumber, {'attr' : {'class' : 'w-100 form-control'}}) }}
{{ sylius_template_event('sylius.shop.account.profile.update.form', {'customer': customer, 'form': form}) }}
{{ form_row(form._token) }} {{ form_end(form, {'render_rest': false}) }}
{% endblock %}