{{ __('Family Member Added Successfully') }}

{{ __('Back to Family Members') }}

Adult Dependent Added Successfully

{{ $familyMember->dependentUser->name }} has been added to your family plan.

Login Credentials

This is the only time these credentials will be displayed. Please save them now.

Email: {{ $email }}

Password: {{ $password }}

Please share these credentials with {{ $familyMember->dependentUser->name }} so they can log in to their account.

They will be able to:

  • View their medical information
  • Schedule appointments
  • Access healthcare services
  • View family plan information

Family Plan Structure

Your Family Plan Allows:

  • Total of 5 dependents per primary account holder
  • Maximum 1 older dependent (24+ years)
  • Maximum 4 younger dependents (23 years or younger)
  • No specific limit on how many younger dependents can be adults (18-23)
  • Adult dependents (18-23) and older dependents (24+) receive their own login credentials
  • Minor dependents (under 18) are managed by the primary account holder
@php $primarySubscription = $familyMember->subscription; $dependentCount = $primarySubscription->getDependentCount(); $youngerDependentCount = $primarySubscription->getYoungerDependentCount(); $adultDependentCount = $primarySubscription->getAdultDependentCount(); $olderDependentCount = $primarySubscription->getOlderDependentCount(); $canAddMore = $dependentCount < 5; $canAddYoungerDependent = $youngerDependentCount < 4; $canAddOlderDependent = $olderDependentCount < 1; @endphp
Total Dependents
{{ $dependentCount }}/5
@if($canAddMore) {{ 5 - $dependentCount }} slots available @else Limit reached @endif
Younger Dependents (≤23)
{{ $youngerDependentCount }}/4
@if($canAddYoungerDependent) {{ 4 - $youngerDependentCount }} slots available @else Limit reached @endif
Older Dependents (24+)
{{ $olderDependentCount }}/1
@if($canAddOlderDependent) 1 slot available @else Limit reached @endif
Adult Dependents (18-23)
{{ $adultDependentCount }}
No specific limit
Included in younger dependents count
Minor Dependents (<18)
{{ $youngerDependentCount - $adultDependentCount }}
Managed by primary account
Included in younger dependents count
Continue to Family Members

Next Steps

Here's what happens next:

  1. Share the login credentials with {{ $familyMember->dependentUser->name }}.
  2. They can log in at any time to access their healthcare services.
  3. They will need to complete their medical questionnaire after logging in.
  4. As the primary account holder, you will be billed for all services under your family plan.