{{ form_start(form) }}
{{ form_widget(form.last_name, {'attr': {'class': 'form-control', 'placeholder': 'eg.: Jon'}}) }} {{ form_errors(form.last_name) }}
{{ form_widget(form.first_name, {'attr': {'class': 'form-control', 'placeholder': 'eg.: Doe'}}) }} {{ form_errors(form.first_name) }}
{{ form_widget(form.phone, {'attr': {'class': 'form-control', 'placeholder': 'eg.: 2749...'}}) }} {{ form_errors(form.phone) }}
{{ form_widget(form.mobile, {'attr': {'class': 'form-control', 'placeholder': 'eg.: 0749...'}}) }} {{ form_errors(form.mobile) }}
{{ form_widget(form.email, {'attr': {'class': 'form-control', 'placeholder': 'eg.: admin@...'}}) }} {{ form_errors(form.email) }}
{{ form_widget(form.address, {'attr': {'class': 'form-control', 'placeholder': 'eg.: Cocody'}}) }} {{ form_errors(form.address) }}

{{ form_end(form) }}