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?
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?
To change the minimum size, do so in your validation variable:
'password' => 'required|min:8'
More details can be found at documentation .