{!! Form::open(['url' => action('\Modules\Partners\Http\Controllers\PaymentsController@store'), 'method' => 'post','id' =>'addpayment' ]) !!}

Partner Payments

{!! 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('type','Transaction Type') !!} {!! Form::select('type', ['1'=>'Withdraw','2'=>'Deposit'], null, ['class' => 'form-control select2', 'style' => 'width:100%;height: 40px;']); !!}
{!! Form::label('date','Date: ') !!}
{!! Form::text('date', null, ['class' => 'form-control date-picker','required','placeholder' => __('partners.purchasedate'), 'readonly']); !!}
{!! Form::label('notes',' Notes:') !!} {!! Form::text('notes', null, ['class' => 'form-control', 'placeholder' =>'Notes' ]); !!}
{!! Form::close() !!}