Symfony recommends putting assets in the web folder.
They also comment about using the asset method. Why is the asset method needed? It takes up more characters than just putting in the link.
Why is this:
<img src="{{ asset('img/social/facebook.png') }}" />
better than this:
<img src="/img/social/facebook.png" />
I feel like I must be missing some reasons why.