Accessing the logged-in user in a template
You can access user data directly in the twig template without requesting anything in the controller. The user is accessible like that : app.user. Now, you can access every property of the user. For example, you can access the username like that : app.user.username. Warning, if the user is not logged, the app.user is null. … Read more