{{ Form::label('','Purchase Order : ') }}
{{-- {{ Form::select('purchase_id',$purchases,false,['class'=>'form-control purchase_id ','placeholder'=>"Select Purchase Order ",'required'=>true]) }} --}}
{{ Form::label('','Bill No : ') }}
{{ Form::text('bill_no',null,['class'=>'form-control','placeholder'=>"Ex. 11"]) }}
@if($errors->has('bill_no'))
{{ $errors->get('bill_no') }}
@endif
{{ Form::label('','Bill Date : ') }}
{{ Form::text('bill_date',date('Y-m-d'),['class'=>'form-control','placeholder'=>"Ex. 2020-01-01", 'required' , 'readonly' ]) }}
@if($errors->has('bill_date'))
{{ $errors->get('bill_date') }}
@endif
{{ Form::label('','Chalan No : ') }}
{{ Form::text('chalan',null,['class'=>'form-control','placeholder'=>"Ex. 101"]) }}
@if($errors->has('chalan'))
{{ $errors->get('chalan') }}
@endif
{{ Form::label('','Chalan Date : ') }}
{{ Form::text('chalan_date',null,['class'=>'form-control date','placeholder'=>"Ex. 2020-01-01"]) }}
@if($errors->has('chalan_date'))
{{ $errors->get('chalan_date') }}
@endif