I am working on a Laravel project using the auth scaffolding. When trying the link "forgot your password" with a valid mail address, I get the following error:
The BCMath functions must be enabled to use the NTLM authenticator.
Following other questions, like this one, I installed the bcmath module for my PHP version (7.2) using:
sudo apt install php7.2-bcmath
Then I restarted apache. I can see bcmath listed when using php -m
, but still the error in my project. What am I missing?