Strong password validation in Laravel 10
It is not working in Laravel 10, How can I develop it in a proper way? 'password' => [ 'required|confirmed', Password::min(8) ->letters() ->mixedCase() ->numbers() ->symbols() ->uncompromised() ], Trying strong password validation in Laravel 10 but it does not work. Hope…