@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
{{ $label }}
@if (! $loop->last)
@endif
@endforeach
{{-- ============ The wizard card ============ --}}
@if ($step === 0)
About you
The basics members will see when you are matched.
Mobile (WhatsApp) number *
@error('phone')
{{ $message }}
@enderror
Professional title *
@error('title')
{{ $message }}
@enderror
Years of experience *
Select...
@foreach (['1-3 years', '4-7 years', '8-14 years', '15+ years'] as $y)
{{ $y }}
@endforeach
@error('years_experience')
{{ $message }}
@enderror
Where are you based? *
@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)
{{ $s }}
@endforeach
@error('specialties')
Please pick at least one specialty.
@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)
{{ $m }}
@endforeach
@error('mode')
Please choose how you meet members.
@enderror
Which days work for you? *
@foreach (\App\Livewire\ConsultantOnboarding::DAYS as $d)
{{ $d }}
@endforeach
@error('days')
Please pick at least one day.
@enderror
Members you can take per month *
Select...
@foreach (['1-3', '4-8', '9-15', '16+'] as $c)
{{ $c }}
@endforeach
@error('capacity')
{{ $message }}
@enderror
@endif
@if ($step === 3)
Your story
Members choose people, not job titles. Tell them who you are.
Short bio * (80 characters minimum)
@error('bio')
{{ $message }}
@enderror
Your money philosophy in one line *
@error('philosophy')
{{ $message }}
@enderror
LinkedIn profile (optional)
@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.
@endif
{{-- ============ Navigation ============ --}}
$step === 0])>
Back
Progress saved
Saving...
@if ($step < count(\App\Models\Consultant::STEPS) - 1)
Continue
@else
Submit my profile
@endif
Invited by the Money-Wise team ยท Your answers are only visible to Money-Wise admins.
@endif