{{-- Edit Basic Info of Budget 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: ') }} {{ 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('','Consumer: ') }} {{ Form::text('consumer_name',$cost_breakdown ? $cost_breakdown->consumer_name : '',['class'=>'form-control','placeholder'=>'Consumer']) }}

{{ 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('size_ratio','Size Ratio : ') }} {{ Form::text('size_ratio',$cost_breakdown ? $cost_breakdown->size_ratio:null,['class'=>'form-control ','placeholder'=>'Size Ratio']) }}

{{ 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('fob','FOB : ') }} {{ Form::text('fob',$cost_breakdown ? $cost_breakdown->fob:null,['class'=>'form-control ','placeholder'=>'Fob']) }}

{{ Form::label('quote_id','Select Price Quotation Type: ') }} {{ Form::select('quote_id',$repository->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 Budget Sheet ends --}}