I\'ve searched a lot on the net how to access the global $_SESSION array from TWIG template and found this: {{app.session.get(\'index\')}}, but whe
$_SESSION
{{app.session.get(\'index\')}}
The way to access a session variable in Twig is:
{{ app.session.get('name_variable') }}