Registration

{{ form_start(registrationForm , {'attr': {'novalidate': 'novalidate'}}) }}
{{ form_widget(registrationForm.lastname, {'attr': {'class': 'form-control' }}) }}
{{ form_widget(registrationForm.firstname, {'attr': {'class': 'form-control' }}) }}
{{ form_widget(registrationForm.address, {'attr': {'class': 'form-control' }}) }}
{{ form_widget(registrationForm.phone, {'attr': {'class': 'form-control' }}) }}
{{ form_widget(registrationForm.email, {'attr': {'class': 'form-control' }}) }}
{{ form_widget(registrationForm.emailVerif, {'attr': {'class': 'form-control' }}) }}
{{ form_widget(registrationForm.plainPassword.first , {'attr': {'class': 'form-control' }}) }}
{{ form_widget(registrationForm.plainPassword.second , {'attr': {'class': 'form-control' }}) }}
{{ form_end(registrationForm) }}

Already have account? Sign In