//-- this is my controller code------
$form = $this->createFormBuilder()
->add('curpass', 'password')
->add('password', 'repeated', array(
'type' => 'password',
'first_name' => " new Password",
'second_name' => "Re-enter Password",
'invalid_message' => 'The password fields must match.'
))
->getForm();
//----this is my twig code-----
<form action="#" method="post" {{ form_enctype(form) }}>
{{ form_widget(form) }}
<input type="submit" />
</form>
私のコードで何が間違っているとお考えですか?パスワードフィールド「新規パスワード」と「パスワード再入力」の両方を比較していません。繰り返しフィールドがsymfony2で検証されていない
何が印刷されますか? – meze