Good Night, I am working with Laravel 5.3 on a solution, as it is an API application, I chose to use Laravel Passport as authentication. I'm having a hard time loading the Token into the page header, I'm able to log in, return the access token, the refresh token. But I can not start the routes with a custom header with the information archived in LocalSession. Via postman I usually authenticate the access, but via Laravel I still could not add the "Authorization" information in the header of the routes, I tried to add via header () in the view but it does not work because the auth: api middleware redirects the page before it is opened . My question is, how do I get the tokens to the page header on the route before the middleware kicks in? Thank you.