To change the admin password from the database:
Go to PhpMyAdmin and copy the following MySql query:
UPDATE admin_user SET password = CONCAT(SHA2('XXXXXXNewPassWord', 256), ':XXXXXX:1') WHERE username = 'admin';
The XXXXXX is a cryptographic salt which is saved in the env.php file

