I have the image in: src/WebBundle/img/img2.jpg
Im trying this but don´t works:
<img src="{{ asset('WebBundle/img/img2.jpg') }}" />
Thank you for the patience
I have the image in: src/WebBundle/img/img2.jpg
Im trying this but don´t works:
<img src="{{ asset('WebBundle/img/img2.jpg') }}" />
Thank you for the patience
Better to user assets.
{% image '@AppBundle/Resources/public/images/example.jpg' %}
<img src="{{ asset_url }}" alt="Example" />
{% endimage %}
In your case just change image url to avoid any url problem.