I\'ve got a form with extra fields added with the option mapped to false. But when I try to validate my form, it won\'t pass indicating \"this valu
mapped
false
It's works. Checked for symfony 2.1. Code should be like this:
$builder->add('password', 'password', ['required' => false, 'mapped' => false]);
Of course property 'required' is not required. Example from the documentation.