How to add DefaultAdress fields in Customer Sylius Form (symfony3)

373 Views Asked by At

I think the title is not very clear, so I will explain better : I have edited the CustomerRegister form the add a few fields, and I would like to add DefaultAdress fields too (defaultAdress is a linked object to Customer - I have a getDefaultAdresse method in CustomerObject). I would like to add all the fields that are in the DefaultAddress object (street, country, etc.)

I don't know how to do that...

Do I need to modify the CustomerRegistrationTypeExtension to add fields for the address ? How can I call the fields in my twig file ? Like that : {{ form_row(form.defaultAddress.street) }} ?

I didn't find doc to explain that case.

Thanks for your help !

1

There are 1 best solutions below

1
On BEST ANSWER

You should create CustomerRegistrationTypeExtension, just like you described. Inside of this extension, simply do:

use Sylius\Bundle\AddressingBundle\Form\Type\AddressType;

$builder->add('defaultAddress', AddressType::class)

Then override the template and you should be able to render the fields or entire form with:

{{ form_widget(form.defaultAddress) }}

I'd recommend using our standard address form template, by simply including it:

{% include '@SyliusShop/Common/Form/_address.html.twig' with {'form': form.defaultAddress} %}