It sounds like you may need to update your CORS configuration to allow for redirects. You can do this by adding the following code to your app/Http/Middleware/Cors.php file:
public function handle($request, Closure $next)
{
return $next($request)
->header('Access-Control-Allow-Origin', '*')
->header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS')
->header('Access-Control-Allow-Headers', 'X-Requested-With, Content-Type, X-Token-Auth, Authorization')
->header('Access-Control-Allow-Credentials', 'true')
->header('Access-Control-Allow-Redirects', 'true');
}
This should allow for the redirects to be accepted by the CORS policy.