'required|min:6|max:10|confirmed', 'password_old' => 'required', ]; } public function messages(){ //if i want to change the errors mgs! return [ 'password.min' => 'password needs to be Between 6-10 chars', 'password_old.required' => 'the Old Password is required', ]; } }