If we forget admin password and want to update this admin password then we have to just do litil bet effort
just need to run below query on our sql database
SELECT * FROM admin_user;
Then, find the username we want to modify in the listing provided ‘pcds’ in this example. Then, to update the password, type
UPDATE admin_user SET password=CONCAT(MD5('Pcinfotech'), ':Pc') WHERE username='pcds';
‘Pc’ would be changed to whatever we want it to be and same goes for ‘infotech’