Symfony でフォームを作成しようとしていますが、繰り返しフィールドに問題があります
->add('password', 'repeated', array(
'type'=> 'password',
'first_name' => $translator->trans('global.password'),
'second_name' => $translator->trans('register.confirm')
))
first_name または second_name に単語が含まれている場合は問題ありませんが、スペースまたはポイントがある場合は次のエラーが発生します。
The name "register.confirm" contains illegal characters. Names should start with a letter, digit or underscore and only contain letters, digits, numbers, underscores ("_"), hyphens ("-") and colons (":").
スペースまたはポイントを設定する解決策はありますか?
タナクス