How to change the required minimum password size

Asked

Viewed 100 times

0

I am trying to change the minimum size for the field 'password' but I can’t find.

Does anyone know the minimum amount that Laravel requires for this field and if it is possible to change? If so, where can I make this change?

  • What is the Walder version?

1 answer

1


To change the minimum size, do so in your validation variable:

'password' => 'required|min:8'

More details you can check on documentation.

  • Thanks for the tip, Paulo.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.