{!! Form::label('performed_by', 'Performed by:') !!}
{!! Form::select('performed_by', $performedby,$talley->performed_by, ['class' => 'form-control']) !!}
{!! Form::label('labour_association', 'Labour Association:') !!}
{!! Form::select('labour_association', $labourassociation,$talley->labour_association, ['class' => 'form-control quantity']) !!}
{!! Form::label('uom', 'UoM:') !!}
{!! Form::select('uom', $uom,$talley->labour_association, ['class' => 'form-control']) !!}
{!! Form::label('Detail Count', 'Detail Count:') !!}
{!! Form::label('weight', 'Weight:') !!}
{!! Form::text('weight', $talley->weight, ['class' => 'form-control']) !!}
{!! Form::label('quantity', 'Quantity:') !!}
{!! Form::text('quantity', $talley->quantity, ['class' => 'form-control']) !!}
{!! Form::label('description', 'Description Of Good:') !!}
{!! Form::text('description', $talley->description, ['class' => 'form-control']) !!}
{!! Form::label('remark', 'Remark:') !!}
{!! Form::text('remark', $talley->remark, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
Cancel