I am using laravel 5.4 and I updated the .env file as follows:
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=my gmail
MAIL_PASSWORD=my password
MAIL_ENCRYPTION=tls
when I tried to verify that I received the following message
Attackers may try to steal your information from test.dev (for example, passwords, messages or credit cards). Learn more NET :: ERR_CERT_AUTHORITY_INVALID
so I tried to return all the default value, but I still have the same message .. where is the problem?
source
share