Password Hash Generator

Password: admin123

Hash: $2y$12$yFNsNJy1IPXeTUfPn/D2aOGhhv5f1EwLeT6bbYcvNqkHw9V2hldR2


To update the admin password in database:

  1. Go to phpMyAdmin: http://localhost/phpmyadmin
  2. Select database: smile360_kaizan
  3. Click on table: users
  4. Click 'Edit' for the admin user
  5. Replace the password field with this hash
  6. Click 'Go' to save

Or run this SQL query:

UPDATE users SET password = '$2y$12$yFNsNJy1IPXeTUfPn/D2aOGhhv5f1EwLeT6bbYcvNqkHw9V2hldR2' WHERE username = 'admin';

Test Password Verification

Database Connection Error: SQLSTATE[28000] [1045] Access denied for user 'root'@'localhost' (using password: NO)

Make sure:


← Back to Login | Go to Form