@if (session()->has('message')) @component('portal.ninja2020.components.message') {{ session('message') }} @endcomponent @endif

{{ ctrans('texts.contact') }}

@if($state['initial_completed'] === false)
@csrf
@endif @if($state['otp_form'])
@csrf
{{ ctrans('texts.code') }} @error('otp') @enderror
@endif @if($state['register_form'])
@csrf
@if($subscription->company->client_registration_fields) @foreach($subscription->company->client_registration_fields as $field) @if($field['visible'])
@if($field['required'])
*
@endif
@if($field['key'] === 'email') @elseif($field['key'] === 'password') @elseif($field['key'] === 'currency_id') @elseif($field['key'] === 'country_id') @else @endif @error($field['key'])
{{ $message }}
@enderror
@if($field['key'] === 'password')
@if($field['required'])
*
@endif
@endif @endif @endforeach @endif
@endif