I use barryvdh/laravel-snappy to generate pdf. But when I add an img it does not show.
Here's my code:
<img src="{{ asset('xx.jpeg') }}" style="height: 50px; width:100px">
but the area of image is blank(gray rectangle)
if I use this:
<img src="xx.jpeg" style="height: 50px; width:100px">
got this error:


For me it worked like this
And in a blade file
I used these options for the image to load, I hope it helps