Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Yup password confirm password

Yup.object({
  password: Yup.string().required('Password is required'),
  passwordConfirmation: Yup.string()
    .test('passwords-match', 'Passwords must match', function(value){
      return this.parent.password === value
    })
})
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Yup #password #confirm #password
ADD COMMENT
Topic
Name
9+9 =