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.
hash_property_path
RepeatedType
1 parent 70321a0 commit ae02ddaCopy full SHA for ae02dda
reference/forms/types/password.rst
@@ -63,6 +63,15 @@ object.
63
'mapped' => false,
64
]);
65
66
+ or if you want to use it with the ``RepeatedType``::
67
+
68
+ $builder->add('plainPassword', RepeatedType::class, [
69
+ 'type' => PasswordType::class,
70
+ 'first_options' => ['label' => 'Password', 'hash_property_path' => 'password'],
71
+ 'second_options' => ['label' => 'Repeat Password'],
72
+ 'mapped' => false,
73
+ ]);
74
75
Overridden Options
76
------------------
77
0 commit comments