//-- 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>
Можете ли вы предложить мне, что не так в моем коде? Он не сравнивает оба поля пароля «новый пароль» и «пароль для повторного ввода».