{% extends 'layout.html.twig' %} {% set seo_title = 'Account Information' %} {% block content %}

Account Information

{{ form_start(form, {'attr': {'class': 'account-details'}}) }}
{% include '_includes/flash-messages.html.twig' %} {{ form_row(form.email) }}

Contact Details

{{ form_row(form.company) }} {{ form_row(form.abn) }} {{ form_row(form.firstName) }} {{ form_row(form.lastName) }} {{ form_row(form.address) }} {{ form_row(form.suburb) }} {{ form_row(form.postcode) }} {{ form_row(form.state) }} {{ form_row(form.country) }} {{ form_row(form.phoneNumber) }}
Cancel
{{ form_end(form) }}
{% endblock %}