How to resset laravel ui password

  Kiến thức lập trình

Resset password using laravel ui package and send email by Gmail

we have used laravel ui package for authentication and gmail for sending password reset link email this worked properly in our local server in xampp but when we have deployed the project to cpanel this dose not work even shows We have emailed your password reset link. but we do not receive the email.

some part of .env

MAIL_DRIVER=sendmail
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME="secret"
MAIL_PASSWORD=secret  
MAIL_ENCRYPTION=ssl
MAIL_FROM_ADDRESS="secret"
MAIL_FROM_NAME="${APP_NAME}"

LEAVE A COMMENT