{!! Form::label('measurement', 'Measurement:') !!} {!! Form::select('measurement',$measurement, null, ['class' => 'form-control']) !!}
{!! Form::label('total_quantity', 'Total Quantity:') !!} {!! Form::text('total_quantity', null, ['class' => 'form-control']) !!}
{!! Form::label('weight', 'Weight:') !!} {!! Form::text('weight', null, ['class' => 'form-control']) !!}
{!! Form::label('package_weight', 'Package Weight:') !!} {!! Form::text('package_weight', null, ['class' => 'form-control']) !!}
{!! Form::label('labour_association', 'Labour Association:') !!} {!! Form::select('labour_association',$labour_association, null, ['class' => 'form-control']) !!}
{!! Form::label('performed_by', 'Performed By:') !!} {!! Form::select('performed_by',$performed_by, null, ['class' => 'form-control']) !!}
{!! Form::label('unstaff_quantity', 'Unstaff Quantity:') !!} {!! Form::text('unstaff_quantity', null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel