Laravel: Form validation string-length error messages cause exception
Your rules entry is wrong. It has to be like
'password' => 'required|alpha_dash|min:7'
Look at the Laravel validation docs for more information
Your rules entry is wrong. It has to be like
'password' => 'required|alpha_dash|min:7'
Look at the Laravel validation docs for more information