.. rst-class:: outdated Forms ===== .. danger:: We're sorry but **this documentation section is outdated**. Please have that in mind when trying to use it. You can help us making documentation up to date via Sylius Github. Thank you! The bundle ships with a set of useful form types for all models. You can use the defaults or :doc:`override them ` with your own types. Address form ------------ The address form type is named ``sylius_address`` and you can create it whenever you need, using the form factory. .. code-block:: php get('form.factory')->create('sylius_address'); } } You can also embed it into another form. .. code-block:: php add('billingAddress', 'sylius_address') ->add('shippingAddress', 'sylius_address') ; } }