I used to store password in database for sh1 or md5 like:
$password = md5($password);
It was very easy to reset password through phpMyAdmin - just edit user table, write password, select md5 or sh1 in function field and update the record.
Since I have changed password hash to argon2 it seems difficult or impossible to reset through phpMyAdmin.
Here is how I'm saving password in database. Can somebody guide me how this password could be reset through phpMyAdmin?
$options = ['cost' => 12];
$password = password_hash($password, PASSWORD_DEFAULT, $options);