Create superadmin:

1) Generate a password hash with PHP:
   php -r "echo password_hash('ChangeMe123!', PASSWORD_DEFAULT);"

2) Insert into DB (replace hash and email):
   INSERT INTO users (name, email, password, role) VALUES ('Super Admin', 'admin@example.com', '<HASH>', 'superadmin');
