@extends('layouts.master') @section('title','Buyer Dashboard') @section('content') @include('partials.headerbanner',['title'=>"Product List",'banner' => asset('images/product-list-bnr.jpg')]) @include('partials.header')

Products List

to
{{ Form::text('full_address', old('full_address'), ['class' => 'form-control','id' => 'full_address','placeholder' => 'Enter Your Address']) }} {{ Form::hidden('address_line_1', old('address_line_1'), ['id' => 'street_number']) }} {{ Form::hidden('address_line_2', old('address_line_2'), ['id' => 'route']) }} {{ Form::hidden('city', old('city'), ['id' => 'locality']) }} {{ Form::hidden('state', old('state'), ['id' => 'administrative_area_level_1']) }} {{ Form::hidden('latitude', old('latitude'), ['id' => 'latitude', 'class' => 'form-control','readonly' => true]) }} {{ Form::hidden('longitude', old('longitude'), ['id' => 'longitude', 'class' => 'form-control','readonly' => true]) }}
@include('productmanager::product_list_table',['products'])
@stop @section('script_per_page') @stop