Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. protected function configureFormFields(FormMapper $formMapper)
  2. {
  3. $formMapper
  4. ......
  5. ->add('plainPassword', 'repeated', array(
  6. 'type' => 'password',
  7. 'options' => array('translation_domain' => 'FOSUserBundle'),
  8. 'first_options' => array('label' => 'form.password'),
  9. 'second_options' => array('label' => 'form.password_confirmation'),
  10. 'invalid_message' => 'fos_user.password.mismatch',
  11. 'required' => false,
  12. )
  13. )
  14. ..
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement