diff --git a/resources/views/billing-portal/v3/rff.blade.php b/resources/views/billing-portal/v3/rff.blade.php index 6c999e1fcaf5..43c6e141d923 100644 --- a/resources/views/billing-portal/v3/rff.blade.php +++ b/resources/views/billing-portal/v3/rff.blade.php @@ -10,13 +10,6 @@ @endif
- @livewire('required-client-info', [ - 'fields' => method_exists($gateway, 'getClientRequiredFields') ? $gateway->getClientRequiredFields() : [], - 'contact' => auth()->guard('contact')->user(), - 'countries' => $countries, - 'company' => $company, - 'company_gateway_id' => $gateway->company_gateway ? $gateway->company_gateway->id : $gateway->id, - 'form_only' => true - ]) + @livewire('required-client-info', ['db' => $company->db, 'fields' => method_exists($gateway, 'getClientRequiredFields') ? $gateway->getClientRequiredFields() : [], 'contact_id' => auth()->guard('contact')->user()->id, 'countries' => $countries, 'company_id' => $company->id, 'company_gateway_id' => $gateway->company_gateway ? $gateway->company_gateway->id : $gateway->id, 'form_only' => true])>