@if ($this->isComplete()) {{-- ============ Submitted state ============ --}}

Asante, {{ explode(' ', $consultant->name)[0] }}!

Your profile has been submitted to the Money-Wise team. {{ $consultant->status === 'approved' ? 'You are approved and can now be matched with members.' : 'We are reviewing it and will be in touch shortly, usually within a few days.' }}

Questions? Write to sema@moneywise.co.ke

@else {{-- ============ Header ============ --}}
Money-Wise consultant network

Karibu, {{ explode(' ', $consultant->name)[0] }}

A few questions so we can match you with the right members. Your progress saves automatically, you can leave and pick up right where you stopped.

{{-- ============ Step rail ============ --}}
@foreach (\App\Models\Consultant::STEPS as $i => $label)
@if ($i < $step) @else {{ $i + 1 }} @endif
@if (! $loop->last) @endif
@endforeach
{{-- ============ The wizard card ============ --}}
@if ($step === 0)

About you

The basics members will see when you are matched.

@error('phone')

{{ $message }}

@enderror
@error('title')

{{ $message }}

@enderror
@error('years_experience')

{{ $message }}

@enderror
@error('location')

{{ $message }}

@enderror
@endif @if ($step === 1)

Your expertise

Pick everything you coach confidently, this drives member matching.

@foreach (\App\Livewire\ConsultantOnboarding::SPECIALTIES as $s) @endforeach
@error('specialties')

Please pick at least one specialty.

@enderror
@error('languages')

{{ $message }}

@enderror
@endif @if ($step === 2)

Availability

So we never match you beyond your capacity.

How do you prefer to meet members? *

@foreach (['Virtual', 'In person', 'Both'] as $m) @endforeach
@error('mode')

Please choose how you meet members.

@enderror

Which days work for you? *

@foreach (\App\Livewire\ConsultantOnboarding::DAYS as $d) @endforeach
@error('days')

Please pick at least one day.

@enderror
@error('capacity')

{{ $message }}

@enderror
@endif @if ($step === 3)

Your story

Members choose people, not job titles. Tell them who you are.

@error('bio')

{{ $message }}

@enderror
@error('philosophy')

{{ $message }}

@enderror
@error('linkedin')

{{ $message }}

@enderror
@endif @if ($step === 4)

The promise we make together

Members trust Money-Wise with their most private numbers. This is how we honour that.

@error('agree_confidentiality')

Please accept the confidentiality agreement.

@enderror @error('agree_conduct')

Please accept the code of conduct.

@enderror
@endif {{-- ============ Navigation ============ --}}

Progress saved Saving...

@if ($step < count(\App\Models\Consultant::STEPS) - 1) @else @endif

Invited by the Money-Wise team ยท Your answers are only visible to Money-Wise admins.

@endif