i have been trying to show an image that i already stored on a folder and stored the path in the database, i need to show it on the edit page that i created using the infyom CRUD generator.
Been trying like this and even adding the img tag but it just displays the broken image
<!-- Product Image Field -->
<div class="form-group col-sm-6">
{!! Form::label('product_image', 'Imagen:') !!}
{!! Html::image('product_image') !!}
{{ HTML::image(Storage::url('product_image')) }}
{!! Form::file('product_image') !!}
</div>
<div class="clearfix"></div>
any tips / hints or help on this is greately appreciated. thanks