Level 11
A few things to know/checkout:
- The CORS error tells us that javascript things it's sending an ajax request to a domain different from what you see in your browser. Check to see if Laravel is creating the correct URL's to use in ajax request, form submissions, etc.
- The domain
http://auth/loginis suspicious - it looks like the domain is just not set at all (is the APP_URL env. variable being used?). I'm guessing that should be something likehttp://your-site.com/auth/login)