We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8990e commit 7092329Copy full SHA for 7092329
reference/forms/types/options/help.rst.inc
@@ -3,10 +3,11 @@ help
3
4
**type**: ``string`` **default**: null
5
6
-Allows you to define extra information about the field, which will be rendered below the form field by default.
+Allows you to define a help message for the form field, which by default is
7
+rendered below the field.
8
9
.. code-block:: php
10
- $builder->add('name', null, array(
11
- 'help' => 'My helper message.',
+ $builder->add('zip_code', null, array(
12
+ 'help' => 'The ZIP/Postal code for your credit card\'s billing address.',
13
));
0 commit comments