Nothing is wrong, this is just how browsers have been made; you can't do anything from the Laravel side of things. They cache the page you are served and if you get back to it from another page, your browser doesn't request the page again; it just shows you the page it has received and saved earlier (when you were still logged in).
As for a security risk, I don't really see the significance of it; you're only seeing what you've seen before and you can't do anything from that page. If the page has a form and you submit it, you thus make a new request and the server will not process the request because you're not logged in. The only place where this could be a problem is when using a computer that is also used by others that you don't want to see that information, like the computers in a public library for example. In that case, don't use the computer at all and if you do, empty the browser's cache and history.