<div id="step-2" class="d-none">
<div class="row mt-50">
<div class="col-md-6">
<div class="form-group m-3">
{{ form_errors(retirage_form.name) }}
{{ form_widget(retirage_form.name, {'attr': {'class': 'form-control'}}) }}
</div>
</div>
<div class="col-md-6">
<div class="form-group m-3">
{{ form_errors(retirage_form.firstName) }}
{{ form_widget(retirage_form.firstName, {'attr': {'class': 'form-control'}}) }}
</div>
</div>
<div class="col-md-6">
<div class="form-group m-3">
{{ form_errors(retirage_form.phone) }}
{{ form_widget(retirage_form.phone, {'attr': {'class': 'form-control'}}) }}
</div>
</div>
<div class="col-md-6">
<div class="form-group m-3">
{{ form_errors(retirage_form.mail) }}
{{ form_widget(retirage_form.mail, {'attr': {'class': 'form-control'}}) }}
</div>
</div>
<div class="col-md-6">
<div class="form-group m-3">
{{ form_errors(retirage_form.adress) }}
<mapbox-address-autofill>
{{ form_widget(retirage_form.adress, {'attr': {'class': 'form-control'}}) }}
</mapbox-address-autofill>
</div>
</div>
<div class="col-md-3">
<div class="form-group m-3">
{{ form_errors(retirage_form.city) }}
{{ form_widget(retirage_form.city, {'attr': {'class': 'form-control'}}) }}
</div>
</div>
<div class="col-md-3">
<div class="form-group m-3">
{{ form_errors(retirage_form.postalCode) }}
{{ form_widget(retirage_form.postalCode, {'attr': {'class': 'form-control'}}) }}
</div>
</div>
</div>
<div class="row mt-50">
<div class="col-md-4 col-sm-12 offset-md-2 mb-30">
<btn id="step2-btn-retirage-previous" class="btn btn-primary btn-control-page">Précédent</btn>
</div>
<div class="col-md-4 col-sm-12">
<btn id="step2-btn-retirage-next" class="btn btn-primary btn-control-page">Suivant</btn>
</div>
</div>
</div>