{{-- ── Header ─────────────────────────────────────────────────── --}}

{{ __('Add a') }} {{ __('subscriber.') }}

{{ __('Hotspot users sign up through the portal — this is for the ones you provision by hand.') }}

@if ($flash)
{{ $flash }}
@endif
{{-- Step marker --}}
{{ __('New user') }} {{ __('Fill in the details below') }}
{{-- ── Identity ───────────────────────────────────────────── --}}
{{ __('Identity') }}

{{ __('Their login name and who they are.') }}

{{ __('No spaces or special characters. This is what they enter when connecting.') }}
@error('username')
{{ $message }}
@enderror
@error('first_name')
{{ $message }}
@enderror
@error('last_name')
{{ $message }}
@enderror
{{-- ── Contact ────────────────────────────────────────────── --}}
{{ __('Contact') }}

{{ __('How you\'ll reach them about renewals and outages.') }}

@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
{{ __('Shown next to the subscriber\'s name everywhere; also matched on import.') }}
@error('account_number')
{{ $message }}
@enderror
{{-- ── Connection ─────────────────────────────────────────── --}}
{{ __('Connection') }}

{{ __('Service type, plan, and when this subscription should end.') }}

{{ __('Hotspot for portal sign-in; PPPoE for fixed-line homes; Binding for MAC-bypassed static IPs.') }}
@error('user_type')
{{ $message }}
@enderror
@error('package_id')
{{ $message }}
@enderror
{{ __('When this subscription should end. Clear the field for no expiry.') }}
@error('expires_at')
{{ $message }}
@enderror
{{-- ── Account ────────────────────────────────────────────── --}}
{{ __('Account') }}

{{ __('Status and credentials.') }}

@foreach (['active' => __('Active'), 'suspended' => __('Suspended')] as $value => $label) @endforeach
{{ $status === 'active' ? __('Active — can sign in and connect.') : __('Suspended — kept on file but cannot connect.') }}
{{ __('Any length, any characters except <>&.') }}
@error('password')
{{ $message }}
@enderror
{{ __('Cancel') }}