DEV Community

Discussion on: Login Customization in Laravel 8

Collapse
 
bodnarlajostibor profile image
Lajos

I'm facing the same issue, but that Jetstream documentation is unclear for me.

Can you please help me where to put there codes like "(new Password)->length(10)"?

Collapse
 
lootfi profile image
Lotfi

You can do that in "App\Actions\Fortify\PasswordValidationRules" where you will find a "passwordRules" method

Thread Thread
 
bodnarlajostibor profile image
Lajos

An in that, I can see one line:
return ['required', 'string', new Password, 'confirmed'];

Where should I put the suggested "(new Password)->length(10)", for example?

Thread Thread
 
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