I have form where I don't have submit button and actually the form didn't send post request, so my question how is possible to send request on image click?
@foreach($items as $item) <form class="form-horizontal" role="form" method="post" action="{{ route('index', $item->id) }}"> {{ csrf_field() }} <div class="col-md-3"> <div class="well"> <a><img class="img-responsive center-block" src="{{ $item->imagePath }}" alt=""></a> <h4 class="text-center">{{ $item->item_name }}</h4> </div> </div> </form> @endforeach Thank you