1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/resources/views/billing-portal/v3/rff.blade.php

23 lines
750 B
PHP
Raw Normal View History

2024-02-13 18:57:10 +01:00
<div>
@if($errors->any())
<div class="alert alert-error">
<ul>
@foreach($errors->all() as $error)
<li class="text-sm">{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
2024-02-22 14:07:57 +01:00
<div>
@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
])
</div>
</div>