{!! Form::open(['url' => action('\Modules\Partners\Http\Controllers\PaymentsController@update',$data->id), 'method' => 'PUT' ]) !!}
{!! 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('notes',' Notes:') !!}
{!! Form::text('notes', $data->notes, ['class' => 'form-control', 'placeholder' =>'Notes' ]); !!}