{{ Form::label('','L.C No : ') }}
{{ Form::select('goodsin_id',$lcs,null,['class'=>'form-control','placeholder'=>"Select LC No"]) }}
@if($errors->has('goodsin_id'))
{{ $errors->get('goodsin_id') }}
@endif
{{ Form::label('','Cost Type : ') }}
{{ Form::select('cost_id',$costs,null,['class'=>'form-control date','placeholder'=>"Select Cost Type"]) }}
@if($errors->has('cost_id'))
{{ $errors->get('cost_id') }}
@endif
{{ Form::label('','Cost Amount : ') }}
{{ Form::number('amount',null,['class'=>'form-control','placeholder'=>"Ex. 500 tk"]) }}
@if($errors->has('amount'))
{{ $errors->get('amount') }}
@endif
{{ Form::label('','Cost Note : ') }}
{{ Form::textarea('note',null,['class'=>'form-control','placeholder'=>"Ex. Cost Note",'cols'=>5,'rows'=>5]) }}
@if($errors->has('note'))
{{ $errors->get('note') }}
@endif
{{ Form::submit($buttonText,['class'=>'form-control btn btn-success']) }}