@if(Session::has('message'))
@endif
{!! Form::open(['url' => '/admin/b2b-customers/b2b-price-update/'. $product->b2b_cust_query_product_id ]) !!}
{!! Form::label('b2b_qty','B2B Qty') !!}
{!! Form::text('b2b_qty', $product->b2b_qty, ['class' => 'form-control', 'placeholder' => 'B2B Qty', 'id' => 'b2b_qty']) !!}
@if ($errors->has('b2b_qty'))
{!! $errors->first('b2b_qty') !!}
@endif
{!! Form::label('b2b_req_price','B2B Req Price' ) !!}
{!! Form::text('b2b_req_price', $product->b2b_req_price, ['class' => 'form-control', 'placeholder' => 'B2B Req Price', 'id' => 'b2b_req_price']) !!}
@if ($errors->has('b2b_req_price'))
{!! $errors->first('b2b_req_price') !!}
@endif
{!! Form::label('b2b_exp_date','Order Before Date ') !!}
@if ($errors->has('b2b_exp_date'))
{!! $errors->first('b2b_exp_date') !!}
@endif
{!! Form::close() !!}