max-validator icon indicating copy to clipboard operation
max-validator copied to clipboard

Can't compare fields?

Open GameBear64 opened this issue 2 years ago • 0 comments

It would be very useful for password and confirm password fields. Or for example, a field called salary and then a field called desiredSalary that has a minimum of the salary field.

You might mention fields like $fieldName or @fieldName.

Here is an example for the idea

{
  password: 'required|min:8',
  confirmPassword: 'required|equals:$password',
  salary: 'numeric',
  desiredSalary: 'numeric|min:$salary'
}

GameBear64 avatar Feb 27 '23 21:02 GameBear64