{% extends 'ProfileBundle::layout.html.twig' %} {% block body -%}
{{ render(controller('EnterpriseProfileBundle:ProfileWindow:show')) }}

{{form_start(newform)}} {{form_end(newform)}}
Email: {{form_widget(newform.email) }}
Telephone: {{form_widget(newform.telephone) }}
User: {{form_widget(newform.user) }}
Address:
Street number {{form_widget(newform.address.streetnumber)}} Building name {{form_widget(newform.address.buildingname)}}
Street suffix {{form_widget(newform.address.streetsuffix)}} Street name {{form_widget(newform.address.streetname)}}
Street type {{form_widget(newform.address.streettype)}} Street direction {{form_widget(newform.address.streetdirection)}}
Local municipality {{form_widget(newform.address.localmunicipality)}} City / Town {{form_widget(newform.address.citytown)}}
governing district {{form_widget(newform.address.governingdistrict)}} Postal code {{form_widget(newform.address.postaarea)}}
Latitude {{form_widget(newform.address.latitude)}} Longitude {{form_widget(newform.address.longitude)}}
Country {{form_widget(newform.address.country)}}
    {{form_widget(newform.submit, {'attr':{'class':'btn btn-mini btn-success pull-right'}})}}
{% endblock %}