{{-- Edit Basic Info of Cost Breakdown Sheet Start --}}

{{ Form::label('unit_id','Company Unit: ') }} {{ Form::select('unit_id',$repository->AllCompanyUnit(),$cost_breakdown ? $cost_breakdown->unit_id : '',['class'=>'form-control','placeholder'=>'Select Unit','required']) }}

{{ Form::label('country_id','Country Destination: ') }} {{ Form::select('country_id',$repository->countries(),$cost_breakdown ? $cost_breakdown->country_id : '',['class'=>'form-control','placeholder'=>'Country']) }}

{{ Form::label('','Merchandiser : ') }} {{ Form::text('merchandiser_name',$cost_breakdown ? $cost_breakdown->merchandiser_name : '', ['class'=>'form-control ','placeholder'=>'Merchandiser']) }}

{{ Form::label('','Customer: ') }} {{ Form::text('consumer_name',$cost_breakdown ? $cost_breakdown->consumer_name : '',['class'=>'form-control','placeholder'=>'Customer']) }}

{{ Form::label('','Export Contract/LC No: ') }} {{ Form::select('export_contact_no',$repository->pi_details(),$cost_breakdown ? $cost_breakdown->export_contact_no : '',['class'=>'form-control','placeholder'=>'Export Contract/LC No']) }}

{{ Form::label('','Product Description : ') }} {{ Form::text('product_description',$cost_breakdown ? $cost_breakdown->product_description : '',['class'=>'form-control','placeholder'=>'Product Description ']) }}

{{ Form::label('','Style: ') }} {{ Form::text('style',$cost_breakdown ? $cost_breakdown->style : '',['class'=>'form-control','placeholder'=>'Style']) }}

{{ Form::label('','Size Range : ') }} {{ Form::text('size_range',$cost_breakdown ? $cost_breakdown->size_range : '',['class'=>'form-control ','placeholder'=>'Size Range']) }}

{{ Form::label('','Specs: ') }} {{ Form::text('specs', $cost_breakdown ? $cost_breakdown->specs : null,['class'=>'form-control ','placeholder'=>'Specs']) }}

{{ Form::label('','Estimate Gmts del : ') }} {{ Form::text('estimate_garments',$cost_breakdown ? $cost_breakdown->estimate_garments : null,['class'=>'form-control ','placeholder'=>'Estimate Gmts del']) }}

{{ Form::label('','Estimate Qty : ') }} {{ Form::text('estimate_qty',$cost_breakdown ? $cost_breakdown->estimate_qty : null,['class'=>'form-control ','placeholder'=>'Estimate Qty']) }}

{{ Form::label('quote_id','Select Price Quotation Type: ') }} {{ Form::select('quote_id',$allPriceQuote, $cost_breakdown ? $cost_breakdown->quote_id : '',['class'=>'form-control','placeholder'=>'Select Type','required']) }}

{{ Form::label('payment_terms','Payment Terms : ') }} {{-- {{ Form::text('payment_terms',$cost_breakdown ? $cost_breakdown->payment_terms : null,['class'=>'form-control ','placeholder'=>'Payment Terms']) }} --}}

{{ Form::label('','Sketch : ') }}      @for($i=1;$i<=sizeof($repository->check_box());$i++) {{ Form::radio('has_sketch',$i,['class'=>'form-control']) }} {{ $repository->check_box()[$i] }} @endfor

{{ Form::label('','Size Ratio : ') }}     @for($i=1;$i<=sizeof($repository->check_box());$i++) {{ Form::radio('has_size_ratio',$i,['class'=>'form-control']) }} {{ $repository->check_box()[$i] }} @endfor
{{-- row end --}} {{-- Edit Basic Info of Cost Breakdown Sheet ends --}}