I want to add support for flash messages on our pages. I implemented this by following the documentation found here.
I added the following snipplet to my base layou
This is pretty old at time of writing so imagine you've worked it out by now, but for reference sake, it's has rather than hasFlash. So..
has
hasFlash
{% if app.session.flashbag.has('notice') %} {{ app.session.flashbag.get('notice') }} {% endif %}