I'm working with Laravel and I have used this custom regular expression for validating user password request:
'user_password'=> ['required','min:6','regex:/[a-z]/','regex:/[A-Z]/','regex:/[0-9]/','regex:/[@$!%*#?&]/']
Now I needed to combine these separated regex
s all together but don't know how to do it, so if you know, please let me know.. thx!