How to change the minimum size required for the password

0

I'm trying to change the minimum size for the 'password' field but I can not find it.

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

    
asked by anonymous 09.04.2014 / 16:49

1 answer

1

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

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

More details can be found at documentation .

    
09.04.2014 / 17:19