{!! Form::open(['url' => action('\Modules\Partners\Http\Controllers\PaymentsController@update',$data->id), 'method' => 'PUT' ]) !!}

Edit Partner Payment

{!! Form::label('name','Partner Name:') !!} {!! Form::label('name',$data->name) !!}
{!! Form::label('value',' Value:*') !!} {!! Form::text('value', abs($data->value), ['class' => 'form-control', 'required', 'placeholder' =>'Total Amount' ]); !!}
{!! Form::label('type','Transaction Type') !!} {!! Form::select('type', ['1'=>'Withdraw ','2'=>'Deposit'], $data->type, ['class' => 'form-control select2', 'style' => 'width:100%;height: 40px;']); !!}
{!! Form::label('date','Date: ') !!}
{!! Form::text('date', $data->date, ['class' => 'form-control date-picker','required','placeholder' => __('partners.purchasedate'), 'readonly']); !!}
{!! Form::label('notes',' Notes:') !!} {!! Form::text('notes', $data->notes, ['class' => 'form-control', 'placeholder' =>'Notes' ]); !!}
{!! Form::close() !!}