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 !
You should create
CustomerRegistrationTypeExtension
, just like you described. Inside of this extension, simply do:Then override the template and you should be able to render the fields or entire form with:
I'd recommend using our standard address form template, by simply including it: