{% extends '::layout.html.twig' %} {% block content_class 'user edit-profile' %} {% block content -%} {{ form_start(edit_form,{'attr':{'class':'pt-30'}}) }}
{{form_label(edit_form.firstname,'bsh.user.profile.name'|trans({},"USBSHBundle"),{'label_attr':{'class':'text-left'}} ) }}
{{form_widget(edit_form.firstname) }}
{{form_label(edit_form.lastname,'bsh.user.profile.lastnames'|trans({},"USBSHBundle"),{'label_attr':{'class':'text-left'}} ) }}
{{form_widget(edit_form.lastname) }}
{{form_label(edit_form.phone,'bsh.user.profile.phone'|trans({},"USBSHBundle"),{'label_attr':{'class':'text-left'}} ) }}
{{form_widget(edit_form.phone) }}
{{form_label(edit_form.mobile_phone,'bsh.user.profile.optionalphone'|trans({},"USBSHBundle"),{'label_attr':{'class':'text-left'}} ) }}
{{form_widget(edit_form.mobile_phone) }}
{{form_label(edit_form.userFile,'Imagen',{'label_attr':{'class':'text-left'}} ) }}
{{form_widget(edit_form.userFile, {'attr':{'class':'input-select-image'}}) }}
{{ form_widget(edit_form.submit, {'attr':{'class':'col-xs-12 save-form'}} ) }}
{{ form_end(edit_form) }} {% endblock %}