{!! Form::open(['url' => action('\Modules\Partners\Http\Controllers\PaymentsController@store'), 'method' => 'post','id' =>'addpayment' ]) !!}
{!! Form::label('name','Partner Name:*') !!}
{!! Form::select('partner_id', $partners, null, ['class' => 'form-control select2', 'style' => 'width:100%;height: 40px;']); !!}
{!! Form::label('value','Value:*') !!}
{!! Form::text('value', null, ['class' => 'form-control', 'required', 'placeholder' =>'Total Value' ]); !!}
{!! Form::label('notes',' Notes:') !!}
{!! Form::text('notes', null, ['class' => 'form-control', 'placeholder' =>'Notes' ]); !!}