@php
$countries = get_countries();
$countries_phone_code = get_countries_phone_code();
$resume_data = @$resume_data;
$education = @$resume_data->education;
$employment = @$resume_data->employment;
$certificates = @$resume_data->certificates;
$awards = @$resume_data->awards;
$upload_file_size = config('common.upload_file_size');
$allow_file_ext = collect(config('common.allow_pdf'))->implode(', ');
$upload_img_size = config('common.upload_img_size');
$allow_image_ext = collect(config('common.allow_image_ext'))->implode(', ');
@endphp
@if($action == "form_rb_7")
@elseif($action == "form_rb_8")
Skills & Abilities
SELECT SKILLS
Begin by selecting the skill categories for activities you believe you can lead, teach or assist with at camp. You will choose the specific skills on the next page.
@php $no=0; @endphp
@if(!empty($skill_category))
@foreach($skill_category as $category)
@php $no++; @endphp
@if($no%3==0)
@endif
@endforeach
@endif
@elseif($action == "form_rb_9")
@if(!empty($skill_category))
@foreach($skill_category as $value)
@endforeach
@endif
Skills & Abilities
Select Skills
You can select maximum 10 skills
@if(!empty($skill_list_data['skill_category_list']))
@foreach($skill_list_data['skill_category_list'] as $category)
@foreach($skill_list_data['skill_list'] as $skill)
@if($category['skill_category_id'] == $skill['skill_category_id'])
@if($skill['skill_status'] == 1 || ($skill['skill_status'] == 0 && in_array($skill['skill_id'], $skill_list_data['selected_skill_list'])) )
{!! $skill['skill_name'] !!}
@endif
@endif
@endforeach
@endforeach
@endif
Back
Save & Next
Cancel
@elseif($action == "form_rb_10")
@php
$skill_details = $skill_details_data['skill_details'] ?? [];
$skill_levels = $skill_details_data['skill_levels'] ?? [];
$star_arr = ["one","two","three","four","five","six","seven","eight","nine","ten"];
$count_skill_details = count($skill_details);
$levels_list = $skill_id_list = [];
$tooltip = '';
foreach ($skill_levels as $s_level) {
$tooltip .= "
Star # {$s_level['level_id']} ({$s_level['level_title']}) {$s_level['level_desc']} ";
}
$tooltip = '
';
@endphp
Manage skill details
{{-- LEFT TABS --}}
{{-- RIGHT PANEL --}}
@foreach($skill_details as $s_id => $skill)
@php
$levels_list[] = $skill['level_id'];
$skill_id_list[] = $skill['skill_id'];
@endphp
Skill # {{ $skill['skill_name'] }}
{{-- SKILL LEVEL --}}
{{-- COACHING --}}
{{-- DESCRIPTION --}}
Please explain your experience with this skill including any training or certifications you have
*
{{ !empty($skill['skill_description']) ? max(0, 300 - mb_strlen($skill['skill_description'])) : 300 }} characters left
{{ $skill['skill_description'] ?? '' }}
{{-- NAV BUTTONS --}}
@if($s_id != 0)
Back
@endif
@if($s_id != ($count_skill_details - 1))
Next Skill Details
@endif
@endforeach
Back
Save & Next
Save & Preview
Cancel
@elseif($action == "form_rb_11")
Back
Save & Next
Save & Preview
Cancel
@elseif($action == "form_rb_12")
Back
Save & Next
Save & Preview
Cancel
@elseif($action == "form_rb_13")
You would need to be able to pass the pre-requisite used in most US lifeguarding courses which includes:
Prerequisite 1: Complete a swim-tread-swim sequence without stopping to rest:
Jump into the water and totally submerge, resurface then swim 150 yards using the front crawl, breaststroke or a combination of both. (Swimming on the back or side is not permitted. Swim goggles are allowed.)
Maintain position at the surface of the water for 2 minutes by treading water using only the legs.
Swim 50 yards using the front crawl, breaststroke or a combination of both.
Prerequisite 2: Complete a timed event within 1 minute, 40 seconds:
Starting in the water, swim 20 yards. (The face may be in or out of the water. Swim goggles are not allowed.)
Surface dive (feet-first or head-first) to a depth of 7 – 10 feet to retrieve a 10-pound object.
Return to the surface and swim 20 yards on the back to return to the starting point, holding the object at the surface with both hands and keeping the face out at or near the surface.
Exit the water without using a ladder or steps.
Special & Medical Needs Camps:
Back
Save & Preview
Cancel
Build Resume
@elseif($action == "resume_preview")
INTRODUCTION
{{ $resume_data['introduction'] }}
@if(!empty($camp_skill))
SKILLS & ABILITIES
@endif
@if(!empty($camp_skill))
Category
Skill
Rating
Level
Level Description
Do you have expierence coaching or teaching this skill?
Skill Description
@php
$campSkills = $user_skills_details['data']['camp_skill'] ?? [];
$skillLevels = collect($user_skills_details['data']['skill_levels'] ?? []);
@endphp
@foreach($campSkills as $skill)
@php
$level = $skillLevels->firstWhere('level_id', $skill['level_id']);
@endphp
@if(!empty($skill['skill_description']))
{{ $skill['category_name'] }}
{{ $skill['skill_name'] }}
@for($i = 1; $i <= 5; $i++)
★
@endfor
{{ $level['level_title'] ?? '' }}
{!! $level['level_desc'] ?? '' !!}
{{ $skill['skill_coaching'] == 'y' ? 'Yes' : 'No' }}
{!! $skill['skill_description'] ?? '' !!}
@endif
@endforeach
@endif
@php
$validEducation = collect($education)->filter(function($item){
return !empty($item->school)
|| !empty($item->degree)
|| !empty($item->description)
|| (!empty($item->start_date) && $item->start_date != "0000-00-00")
|| (!empty($item->end_date) && $item->end_date != "0000-00-00");
});
@endphp
{{-- EDUCATION --}}
@if($validEducation->count() > 0)
EDUCATION
@foreach($validEducation as $item)
@php
$lines = preg_split("/\r\n|\n|\r/", @$item->school);
@endphp
@if(!empty($lines))
{{ $lines[0] }}
{!! nl2br(e(implode("\n", array_slice($lines, 1)))) !!}
@endif
@if(!empty($item->start_date) && $item->start_date != "0000-00-00")
Start: {{ dateformat($item->start_date,DISPLAY_DATE) }}
@endif
@if(!empty($item->end_date) && $item->end_date != "0000-00-00")
- End: {{ dateformat($item->end_date,DISPLAY_DATE) }}
@endif
@if(!empty($item->degree))
{{ $item->degree }}
@endif
@if(!empty($item->description))
{{ $item->description }}
@endif
@endforeach
@endif
@php
$validEmployment = collect($employment)->filter(function($item){
return !empty($item->title)
|| !empty($item->employer_name)
|| !empty($item->duties)
|| (!empty($item->start_date) && $item->start_date != "0000-00-00")
|| (!empty($item->end_date) && $item->end_date != "0000-00-00");
});
@endphp
@if($validEmployment->count() > 0)
EXPERIENCE
@foreach($validEmployment as $item)
@php
$lines = preg_split("/\r\n|\n|\r/", @$item->employer_name);
@endphp
@if(!empty($lines))
{{ $lines[0] }}
{!! nl2br(e(implode("\n", array_slice($lines, 1)))) !!}
@endif
@if(!empty($item->start_date) && $item->start_date != "0000-00-00")
From: {{ dateformat($item->start_date,DISPLAY_DATE) }}
@endif
@if(!empty($item->end_date) && $item->end_date != "0000-00-00")
- To: {{ dateformat($item->end_date,DISPLAY_DATE) }}
@endif
@php
$lines = preg_split("/\r\n|\n|\r/", @$item->title);
@endphp
@if(!empty($lines))
{{ $lines[0] }}
{!! nl2br(e(implode("\n", array_slice($lines, 1)))) !!}
@endif
@if(!empty($item->duties))
{{ $item->duties }}
@endif
@endforeach
@endif
@if(!is_null($resume_data->camp_counselor_program_past))
Previous Experience
Participated in the J-1 Camp Counselor Program in the past?
{{ @$resume_data->camp_counselor_program_past == '1' ? 'Yes' : 'No' }}
@if(@$resume_data->camp_counselor_program_past == '1')
If yes, how many times?
{{ @$resume_data->camp_counselor_past_many_times }}
@endif
Faith-based Camp:
Are you willing to work at a faith-based camp?
{{ @$resume_data->faith_based_camp == '1' ? 'Yes' : 'No' }}
What is your religion and/or denomination?
{{ @$resume_data->religion }}
Please describe your testimony/doctrine:
{{ @$resume_data->describe_doctrine }}
Are you comfortable leading and/or planning faith-based activities?
{{ @$resume_data->activities_such_as_bible_study == '1' ? 'Yes' : 'No' }}
Special & Medical Needs Camps:
Are you comfortable assisting with personal care to youth or adult campers with special needs, that may include feeding, hygiene, dressing, toileting, mobility support, etc.?
{{ @$resume_data->personal_care == '1' ? 'Yes' : 'No' }}
Do you have experience working with special needs children or adults?
{{ @$resume_data->special_needs_children == '1' ? 'Yes' : 'No' }}
Are you willing to work with primarily adult campers, in a special needs camp setting?
{{ @$resume_data->work_special_needs_camp == '1' ? 'Yes' : 'No' }}
General Questions
Are you willing and able to become lifeguard certified (the camp would provide training)?
@if(@$resume_data->lifeguard_certified == 1)
Yes, I have the swimming skills needed.
@elseif(@$resume_data->lifeguard_certified == 2)
Yes, I am currently or previously lifeguard certified.
@else
No
@endif
Are you comfortable living in a rustic environment at camp? *
(May include limited access to electricity, no or limited air conditioning, no or limited flushing toilets, open air cabins/platform tents, etc.)
{{ @$resume_data->rustic_env_comfort == '1' ? 'Yes' : 'No' }}
Why do you want to work at a camp in the United States?
{{ @$resume_data->why_work_us_camp }}
How do you think you can have a positive impact at camp?
{{ @$resume_data->positive_camp_impact }}
@endif
@elseif($action == "resume_preview_modal")
@else
@if($is_step_success == 0)
Next step is to create your resume...
Support
Create your updated Resume/CV. Your potential host will view this first so be sure to include all details you think are relevant and proofread/spellcheck the document before submitting.
@if($is_step_locked != 1)
{{ ($step_verified_data['is_re_create_resume'] == 1) ? 'Update and Re-submit My Resume' : 'Create a Resume' }}
@endif
@elseif($is_step_success == 1 || $is_step_success == 2)
Next step is to upload your resume...
Support
Upload a resume that can impress your {{ __('application_term.employer') }}. It is recommended that you keep your resume less than 3 pages long.
{{ $step_verified_data['message'] }}
@if($is_step_success == 1)
@if(!empty($next_step_key))
Next Step
@endif
@endif
@endif
@endif
@section('scripts')
@endsection