@@ -177,8 +177,9 @@ between Twig and several Symfony components:
177177
178178 $ composer require symfony/twig-bridge
179179
180- The TwigBridge integration provides you with several:doc: `Twig Functions </reference/forms/twig_reference >`
181- that help you render the HTML widget, label and error for each field
180+ The TwigBridge integration provides you with several
181+ :ref: `Twig Functions <reference-form-twig-functions-variables >`
182+ that help you render the HTML widget, label, help and error for each field
182183(as well as a few other things). To configure the integration, you'll need
183184to bootstrap or access Twig and add the:class: `Symfony\\ Bridge\\ Twig\\ Extension\\ FormExtension `::
184185
@@ -510,8 +511,8 @@ Rendering the Form
510511
511512Now that the form has been created, the next step is to render it. This is
512513done by passing a special form "view" object to your template (notice the
513- ``$form->createView() `` in the controller above) and using a set of form
514- helper functions:
514+ ``$form->createView() `` in the controller above) and using a set of
515+ :ref: ` form helper functions< reference-form-twig-functions >` :
515516
516517..code-block ::html+twig
517518
@@ -528,7 +529,7 @@ That's it! By printing ``form_widget(form)``, each field in the form is
528529rendered, along with a label and error message (if there is one). While this is
529530convenient, it's not very flexible (yet). Usually, you'll want to render each
530531form field individually so you can control how the form looks. You'll learn how
531- to do that in the" :doc: `/form/rendering `" section .
532+ to do that in the:doc: `form customization < /form/form_customization>" article .
532533
533534Changing a Form's Method and Action
534535~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~