I am trying to display an image instead of word "back" to go to previous page how do i do that ?
{!! Html::linkRoute('authors', Html::image(images/back.png)) !!}
I am trying to display an image instead of word "back" to go to previous page how do i do that ?
{!! Html::linkRoute('authors', Html::image(images/back.png)) !!}
The only thing that is not okay with your code is the missin single quotes
{!! Html::linkRoute('authors', Html::image('images/back.png')) !!}
but if that does not work, you can always use an a
element
<a href="{{ route('authors') }}" title="Title">Html::image('images/back.png')</a>