fix the password length

This commit is contained in:
hastichavda
2019-11-13 19:02:03 +05:30
parent 821ef9fc41
commit e1d2888786
5 changed files with 31 additions and 5 deletions

View File

@ -108,7 +108,7 @@ export default {
},
password: {
required,
minLength: minLength(8)
minLength: minLength(5)
},
confirm_password: {
required: requiredIf('isRequired'),