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

Edit Final Account

{!! Form::label('profite','Profit Value:') !!} {!! Form::text('profite', $data->profite, ['class' => 'form-control decimal', 'required', 'placeholder' =>'Total Value' ]); !!}
{!! Form::label('sharenumber','Total Number of Shares: ') !!} {!! Form::text('sharenumber', $data->sharenumber, ['class' => 'form-control', 'readonly', 'placeholder' =>'' ]); !!}
{!! Form::label('shareval','Share Value :') !!} {!! Form::text('shareval',number_format($data->profite/$data->sharenumber,2), ['class' => 'form-control', 'readonly', 'placeholder' =>'' ]); !!}
{!! Form::label('startdate','Start Date :') !!}
{!! Form::text('startdate', $data->startdate, ['class' => 'form-control date-picker', 'required', 'placeholder' =>'Start Date' ]); !!}
{!! Form::label('enddate','End Date :') !!}
{!! Form::text('enddate', $data->enddate, ['class' => 'form-control date-picker', 'required', 'placeholder' =>'End Date' ]); !!}
{!! Form::label('notes','Notes: ') !!} {!! Form::text('notes', $data->notes, ['class' => 'form-control' ]); !!}
{!! Form::close() !!}