{!! Form::label('name', 'Name:') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('service', 'Service:') !!} {!! Form::select('service',$service, null, ['class' => 'form-control']) !!}
{!! Form::label('mode_type', 'Mode:') !!} {!! Form::select('mode_type', $mode_type,null, ['class' => 'form-control']) !!}
{!! Form::label('cargo_type', 'Cargo type:') !!} {!! Form::select('cargo_type',$cargo_type ,null, ['class' => 'form-control']) !!}
{!! Form::label('type', 'Container Type:') !!} {!! Form::select('type',[0=>'--select from list--' ,'Standard'=>'Standard','Non-Standard'=>'Non-Standard'] ,0, ['class' => 'form-control'], [ 0 => [ "disabled" => true ] ] ) !!}
{!! Form::label('container_size', 'Container Size:') !!} {!! Form::select('container_size',[0=>'--select from list--' ,'20ft'=>'20ft','40ft'=>'40ft'] ,0, ['class' => 'form-control'], [ 0 => [ "disabled" => true ] ] ) !!}
{!! Form::label('truck_type', 'Truck Type:') !!} {!! Form::select('truck_type',[0=>'--select from list--' ,'with_trailer'=>'with trailer','with_out_trailer'=>'With out trailer'] ,0, ['class' => 'form-control'], [ 0 => [ "disabled" => true ] ] ) !!}
{!! Form::label('measurement', 'Measurement:') !!} {!! Form::select('measurement',$measurement ,null, ['class' => 'form-control']) !!}
{!! Form::label('performed_by', 'Performed By:') !!} {!! Form::select('performed_by',$performed_by ,0 , ['class' => 'form-control'], [ 0 => [ "disabled" => true ] ]) !!}
{!! Form::label('min_day', 'Min Day:') !!} {!! Form::text('min_day', null, ['class' => 'form-control']) !!}
{!! Form::label('max_day', 'Max Day:') !!} {!! Form::text('max_day', null, ['class' => 'form-control']) !!}
{!! Form::label('min_kg', 'Min Kg:') !!} {!! Form::text('min_kg', null, ['class' => 'form-control']) !!}
{!! Form::label('max_kg', 'Max Kg:') !!} {!! Form::number('max_kg', null, ['class' => 'form-control']) !!}
{!! Form::label('price', 'Price:') !!} {!! Form::text('price', null, ['class' => 'form-control']) !!}
{!! Form::label('times', 'Times with:') !!} {!! Form::select('times',['count'=>'count','kg'=>'kg','day'=>'day','day&kg'=>'day&kg'] ,0, ['class' => 'form-control'], [ 0 => [ "disabled" => true ] ] ) !!}
{!! Form::label('remark', 'Remark:') !!} {!! Form::text('remark', null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel