I'm using a Form Request to validate the update of a Client.
The following line keeps giving me the min:6 error, although there is 'sometimes' before it.
This is an update form, so the user password and password confirm field will be empty, for the update.
'users.password' => 'sometimes|confirmed|min:6',
So when I don't enter anything in the password (or password_confirm) field I still get the min: error
The Password must be at least 6 characters.
'users.password' => 'sometimes|confirmed|min:6|nullable',
– Hiren Gohel