@extends('frontend.layout.dashboard-master') @section('site_title', __('Account Setup')) @section('style') @endsection @section('content') @php $mobileStepNames = [ get_static_option('introduction_menu_title') ?? __('Introduction'), get_static_option('experience_menu_title') ?? __('Experience'), get_static_option('education_menu_title') ?? __('Educations'), get_static_option('work_menu_title') ?? __('Skills & Expertise'), get_static_option('skill_menu_title') ?? __('Skills'), get_static_option('hourly_rate_menu_title') ?? __('Hourly Rate & Photo'), ]; @endphp {{-- Mobile step progress bar (hidden on xl+) --}}
{{-- background track --}}
{{-- fill track --}}
{{-- dots --}} @foreach($mobileStepNames as $i => $name) {{ $i + 1 }} @endforeach

{{ __('Step') }} 1 {{ __('of') }} 6 — {{ $mobileStepNames[0] }}

@include('frontend.user.freelancer.account.sidebar')
@include('frontend.user.freelancer.account.introduction') @include('frontend.user.freelancer.account.experience.experience') @include('frontend.user.freelancer.account.education.education') @include('frontend.user.freelancer.account.work.work') @include('frontend.user.freelancer.account.skill.skill') @include('frontend.user.freelancer.account.hourly.hourly-rate') @include('frontend.user.freelancer.account.pre-next')
@endsection @section('script') @include('frontend.user.freelancer.account.account-setup-js') @endsection