@@ -168,10 +168,10 @@ helper functions:
168
168
That's it! Just three lines are needed to render the complete form:
169
169
170
170
* ``form_start(form) `` - Renders the start tag of the form, including the
171
- correct enctype attributes when using file uploads;
171
+ correct enctype attribute when using file uploads;
172
172
173
- * ``form_widget(form) `` - Renders all fields, along with a label and error
174
- message (if there is one) input element ;
173
+ * ``form_widget(form) `` - Renders all of the fields, which includes the field
174
+ element itself, a label and any validation error messages for the field ;
175
175
176
176
* ``form_end() `` - Renders the end tag of the form and any fields that have not
177
177
yet been rendered, in case you rendered each field yourself. This is useful
@@ -779,9 +779,9 @@ the other functions do?
779
779
``div `` element.
780
780
781
781
The majority of the work is done by the ``form_row `` helper, which renders
782
- the label and HTML form widget of each field inside a ``div `` tag by default.
783
- In the :ref: `form-theming ` section, you'll learn how the ``form_row `` output
784
- can be customized on many different levels.
782
+ the label, errors and HTML form widget of each field inside a ``div `` tag by
783
+ default. In the :ref: `form-theming ` section, you'll learn how the ``form_row ``
784
+ output can be customized on many different levels.
785
785
786
786
.. tip ::
787
787
0 commit comments