{{ __('Name') }}
@error('name')
{{ $message }}
@enderror
{{ __('The name of the customer.') }}
{{ __('Email Address') }}
@error('email')
{{ $message }}
@enderror
{{ __('Their email address.') }}
@error('company')
{{ $message }}
@enderror
{{ __('The company or organization they belong to.') }}
{{ __('Account Manager') }}
{{ __('—') }}
@foreach ($this->accountManagers as $managerId => $managerName)
{{ $managerName }}
@endforeach
@error('account_manager')
{{ $message }}
@enderror
{{ __('Set a dedicated account manager for this customer.') }}
{{ __('Role') }}
@foreach ($this->roleOptions as $roleValue => $roleLabel)
{{ $roleLabel }}
@endforeach
@error('role')
{{ $message }}
@enderror
{{ __('Choose the access level for this account.') }}
@error('custom_password')
{{ $message }}
@enderror
{{ __('Leave blank to auto-generate a secure password.') }}
{{-- Billing Information (Optional) --}}
{{ __('Billing System') }}
{{ __('None') }}
@foreach ($this->billingSystemOptions as $value => $label)
{{ $label }}
@endforeach
@error('billing_system')
{{ $message }}
@enderror
{{ __('External billing platform (WHMCS, Blesta, ClientExec).') }}
@if($billing_system === 'blesta' && $this->blestaConnections->isNotEmpty())
{{ __('Blesta Connection (Optional)') }}
{{ __('Auto-detect or use default') }}
@foreach ($this->blestaConnections as $connection)
{{ $connection->name }}
@if($connection->is_default)
(Default)
@endif
@endforeach
@error('connection_id')
{{ $message }}
@enderror>
{{ __('Specify which Blesta installation this customer belongs to.') }}
@endif
@if($billing_system !== '')
@error('billing_id')
{{ $message }}
@enderror
{{ __('Customer ID from the external billing system.') }}
@endif