{{$user->name}}

Headline: {{$user->getProfileSummary('headline')}}

Basic information


Age: {{$user->getAge()}}

Gender: {{$user->getGender('gender')}}

Marital Status: {{$user->getMaritalStatus('marital_status')}}

Nationality: {{$user->getNationality('nationality')}}

National ID Card: {{$user->national_id_card_number or ''}}

Email: {{$user->email or ''}}

Mobile Number: {{$user->mobile_num or ''}} / Phone: {{$user->phone or ''}}

Address: {{$user->street_address or ''}}

@if ($user->image) {{ ImgUploader::print_image("user_images/$user->image") }} @else @endif

Details


Industry: {{$user->getIndustry('industry')}}

Functional Area: {{$user->getFunctionalArea('functional_area')}}

Career Level: {{$user->getCareerLevel('career_level')}}

Experience: {{$user->getJobExperience('job_experience')}}

Country: {{$user->getCountry('country')}}

State: {{$user->getState('state')}}

City: {{$user->getCity('city')}}

Current Salary: {{$user->current_salary or ''}}

Expected Salary: {{$user->expected_salary or ''}}

Salary Currency: {{$user->salary_currency or ''}}

Summary


{{$user->getProfileSummary('summary')}}

Education


@foreach ($user->profileEducation as $profileEducation)

{{$profileEducation->degree_title or ''}} ({{$profileEducation->date_completion or ''}})


Institution: {{$profileEducation->institution or ''}}

Country: {{$profileEducation->getCountry('country')}}

State: {{$profileEducation->getState('state')}}

City: {{$profileEducation->getCity('city')}}

Degree Level: {{$profileEducation->getDegreeLevel('degree_level')}}

Degree Type: {{$profileEducation->getDegreeType('degree_type')}}

Degree Result: {{$profileEducation->degree_result or ''}} ({{$profileEducation->getResultType('result_type')}})

@endforeach

Experiences


@foreach ($user->profileExperience as $profileExperience)

{{$profileExperience->title or ''}} ( {{date('Y-m-d', strtotime($profileExperience->date_start))}} - @if ($profileExperience->date_end) {{date('Y-m-d', strtotime($profileExperience->date_end))}} @else Present @endif )


Currently Working: @if ($profileExperience->is_currently_working) Yes @else No @endif

Country: {{$profileExperience->getCountry('country')}}

State: {{$profileExperience->getState('state')}}

City: {{$profileExperience->getCity('city')}}

Description

{{$profileExperience->description}}

@endforeach

Projects


@foreach ($user->profileProjects as $profileProject)

{{$profileProject->name or ''}} ( {{date('Y-m-d', strtotime($profileProject->date_start))}} - @if ($profileProject->date_end) {{date('Y-m-d', strtotime($profileProject->date_end))}} @else Present @endif )


Currently Ongoing: @if ($profileProject->is_on_going) Yes @else No @endif

URL:

Description

{{$profileProject->description}}

@endforeach

Skills


    @foreach ($user->profileSkills as $profileSkill)
  • {{$profileSkill->getJobSkill('job_skill')}} ({{$profileSkill->getJobExperience('job_experience')}})
  • @endforeach

Languages


    @foreach ($user->profileLanguages as $profileLanguage)
  • {{$profileLanguage->getLanguage('lang')}} ({{$profileLanguage->getLanguageLevel('language_level')}})
  • @endforeach