{% if type is defined %} {% set type = type ~ '-' %} {% else %} {% set type = null %} {% endif %}
{{ form_widget(form.firstName, {'attr' : {'class' : 'form-control', 'placeholder' : form.firstName.vars.label}}) }}
{{ form_widget(form.lastName, {'attr' : {'class' : 'form-control', 'placeholder' : form.lastName.vars.label}}) }}
{{ form_widget(form.company, {'attr' : {'class' : 'form-control', 'placeholder' : form.company.vars.label}}) }}
{{ form_widget(form.street, {'attr' : {'class' : 'form-control', 'placeholder' : form.street.vars.label}}) }}
{% include '@SyliusShop/Common/Form/_countryCode.html.twig' with {'form': form.countryCode} %} {% if form.provinceCode is defined %}
{{ form_widget(form.provinceCode, sylius_test_form_attribute('province-code')|sylius_merge_recursive( {'attr' : {'class' : 'form-control', 'placeholder' : form.street.vars.label}})) }}
{% elseif form.provinceName is defined %}
{{ form_widget(form.provinceName, {'attr' : {'class' : 'form-control', 'placeholder' : form.provinceName.vars.label}}) }}
{% endif %} {% if form.provinceCode is defined %} {{ form_errors(form) }} {% endif %}
{{ form_widget(form.city, {'attr' : {'class' : 'form-control', 'placeholder' : form.city.vars.label}}) }}
{{ form_widget(form.postcode, {'attr' : {'class' : 'form-control', 'placeholder' : form.postcode.vars.label}}) }}
{{ form_widget(form.phoneNumber, {'attr' : {'class' : 'form-control', 'placeholder' : form.phoneNumber.vars.label}}) }}