I tried following these steps to no avail https://stackoverflow.com/a/64299968/7309037
I have a User Table with the column name "EmailAddress" but Laravel is looking for "email" and I get the following error when trying to login:
SQLSTATE[42S22]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Invalid column name 'email'. (SQL: select top 1 * from [User] where [email] = [email protected]) A column was not found
Have you tried this: https://laravel.com/docs/9.x/fortify#customizing-user-authentication
Add the following code to your FortifyServiceProvider file in the boot method: