{{ __('lbl.price_options') }}

@foreach($proDetails['product_price_options'] as $key => $ppo)
{{ Form::label(__('lbl.product_price_apply')) }}
{{ Form::text('product_price_time_period', $ppo->product_price_time_period,["class"=>"form-control mxlen_23","placeholder"=>__('product.product_price_apply'),"name"=>"product_price_time_period[]"]) }} @if ($errors->has('product_price_time_period')) @endif
{{ Form::label(__('lbl.product_price_tire')) }} {{ Form::select('product_price_tires', $product_price_tires, $ppo->prices_id,['class'=>'form-control','id'=>'product_price_tires',"name"=>"product_price_tires[]"]) }} @if ($errors->has('product_price_tires')) @endif
{{ Form::label(__('lbl.product_price')) }} {{ Form::text('product_price_custome', $ppo->product_price_custome, ["class"=>"form-control mxlen_8 numer_only","onkeypress"=>"return validateFloatKeyPress(this,event);","placeholder"=>__('lbl.product_price'),"id"=>"product_price_custome","name"=>"product_price_custome[]"]) }} @if ($errors->has('product_price_custome')) @endif
{{ Form::label(__('lbl.action')) }}
{{ Form::button(' ', ["data-id"=>$key+1,"class"=>"remove_edititem btn btn-primary btn-sm clickbtncommon ","id"=>"item_remove","name"=>"item_remove[]"]) }}
@endforeach