Vendor Edit Form
{{ Form::open(['url'=>route('funding.update',$funding_data->id), 'class'=>'form']) }}
@method('put')
{{ Form::close() }}
{{ Form::label('name','Funding: ',['class'=>'col-sm-2']) }}
{{ Form::text('name',$funding_data->funding_source_name, ['class'=>'form-control form-control-sm','required'=>true, 'id'=>'name_id','placeholder'=>'Enter Name...']) }}
{{ Form::button(" Reset",['class'=>'btn btn-danger', 'type'=>'reset']) }}
{{ Form::button(" Submit",['class'=>'btn button', 'type'=>'submit']) }}