@csrf
{{-- @if(!$client->id)
@endif --}}
@include('forms.components.form_client', [ 'prefix' => '', 'show' => 'business_client_data', 'client' => [ 'first_name' => $client['first_name'], 'last_name' => $client['last_name'], 'phone' => $client['phone'], 'email' => $client['email'], 'company_name' => $client['company_name'], 'tax_number' => $client['tax_number'], ], ])
@include('forms.components.form_address', [ 'label' => 'Cím', 'type' => 'different_address', 'required' => '', 'component_id' => 0, 'data' => $client->address ?? [], ])
billing_address->id ?? '-') != ($client->address->id ?? '-')) checked @endif>
@include('forms.components.form_client', [ 'prefix' => 'billing_', 'show' => 'different_business_client_data', 'client' => [ 'first_name' => $client['billing_first_name'], 'last_name' => $client['billing_last_name'], 'phone' => $client['billing_phone'], 'email' => $client['billing_email'], 'company_name' => $client['billing_company_name'], 'tax_number' => $client['billing_tax_number'], ], ])
@include('forms.components.form_address', [ 'type' => 'different_billing_address', 'required' => '', 'component_id' => 2, 'data' => $client->billing_address ?? [], ])
{{-- @push('scripts') @endpush --}}