LARAVEL BASIC AUTH
I have table user
like
id | username | userpassword
I'm using username
and userpassword
to matching data from user
table.
In field userpassword
I'm not using Laravel hash like Hash::make('secretpassword');
, I'm using md5 hash
. How to set post password variable to md5 hash
so that I can pass and login?