DEV Community

Discussion on: Login Customization in Laravel 8

 
tuckbloor profile image
Chris

protected function passwordRules()
you need to add the following

return ['required', 'string', (new Password)->length(10), 'confirmed'];
Enter fullscreen mode Exit fullscreen mode