/oauth/token routes are missing CORS headers and return a HTTP 405 response when doing a HEAD request.
you may find this useful:
https://github.com/barryvdh/laravel-cors 馃嵒
laravel-cors not work for me
Try the package mentioned above.
File: config/cors.php
ADD oauth/* from paths
'paths' => ['api/*', 'oauth/*'],
@danielrangelsa Saved the day!
Most helpful comment
File: config/cors.php
ADD oauth/* from paths
'paths' => ['api/*', 'oauth/*'],