Ok so I just had a laravel admin panel installed and when I accessed I changed my password and logged out. Now my neither my new or old password work I tried everything and nothing seems to let me back in.
I accessed phpmyadmin to try and reset it through there and tried updating my password using md5 & sh1 but still password wont work. Have no idea what other things I can try.
In phpmyadmin in type it says varchar(191) and I can choose any function to generate the password but don't know if laravel only accepts certain types of functions or am I just doing it wrong.
Any help would be much appreciated.
You can use the Illuminate\Support\Facades\Hash to generate your password hash like this:
$new_password = Hash::make('your textplain password');