dbfdg @php $logo=\App\Models\Utility::get_file('uploads/logo/'); $setting = App\Models\Utility::colorset(); $settings = App\Models\Utility::settingsById($job->created_by); $color = (!empty($setting['color'])) ? $setting['color'] : 'theme-3'; if(isset($settings['color_flag']) && $settings['color_flag'] == 'true') { $themeColor = 'custom-color'; } else { $themeColor = $color; } $getseo= App\Models\Utility::getSeoSetting(); $metatitle = isset($getseo['meta_title']) ? $getseo['meta_title'] :''; $metsdesc= isset($getseo['meta_desc'])?$getseo['meta_desc']:''; $meta_image = \App\Models\Utility::get_file('uploads/meta/'); $meta_logo = isset($getseo['meta_image'])?$getseo['meta_image']:''; $get_cookie = \App\Models\Utility::getCookieSetting(); @endphp {{ !empty($companySettings['header_text']) ? $companySettings['header_text']->value : config('app.name', 'ERPGO SaaS') }} - {{ __('Career') }} @if (isset($setting['cust_darklayout']) && $setting['cust_darklayout'] == 'on') @else @endif @if (isset($setting['cust_darklayout']) && $setting['cust_darklayout'] == 'on') @endif

{{__(' We help')}}
{{__('businesses grow')}}

{{ __('Work there. Find the dream job you’ve always wanted..') }}

{{$job->title}}

@foreach (explode(',', $job->skill) as $skill) {{ $skill }} @endforeach
@if(!empty($job->branches)?$job->branches->name:'')

{{!empty($job->branches)?$job->branches->name:''}}

@endif

{{__('Apply for this job')}}

{{Form::open(array('route'=>array('job.apply.data',$job->code),'method'=>'post', 'enctype' => "multipart/form-data"))}}
{{Form::label('name',__('Name'),['class'=>'form-label'])}} {{Form::text('name',null,array('class'=>'form-control name','required'=>'required'))}}
{{Form::label('email',__('Email'),['class'=>'form-label'])}} {{Form::text('email',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('phone',__('Phone'),['class'=>'form-label'])}} {{Form::text('phone',null,array('class'=>'form-control','required'=>'required'))}}
@if(!empty($job->applicant) && in_array('dob',explode(',',$job->applicant)))
{!! Form::label('dob', __('Date of Birth'),['class'=>'form-label']) !!} {!! Form::date('dob', old('dob'), ['class' => 'form-control datepicker w-100','required'=>'required']) !!}
@endif
@if(!empty($job->applicant) && in_array('gender',explode(',',$job->applicant)))
{!! Form::label('gender', __('Gender'),['class'=>'form-label']) !!}
@endif @if(!empty($job->applicant) && in_array('country',explode(',',$job->applicant)))
{{Form::label('country',__('Country'),['class'=>'form-label'])}} {{Form::text('country',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('state',__('State'),['class'=>'form-label'])}} {{Form::text('state',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('city',__('City'),['class'=>'form-label'])}} {{Form::text('city',null,array('class'=>'form-control','required'=>'required'))}}
@endif @if(!empty($job->visibility) && in_array('profile',explode(',',$job->visibility)))
{{Form::label('profile',__('Profile'),['class'=>'col-form-label'])}}

@endif @if(!empty($job->visibility) && in_array('resume',explode(',',$job->visibility)))
{{Form::label('resume',__('CV / Resume'),['class'=>'col-form-label'])}}

@endif @if(!empty($job->visibility) && in_array('letter',explode(',',$job->visibility)))
{{Form::label('cover_letter',__('Cover Letter'),['class'=>'form-label'])}} {{Form::textarea('cover_letter',null,array('class'=>'form-control','rows'=>'3'))}}
@endif @foreach($questions as $question)
{{Form::label($question->question,$question->question,['class'=>'form-label'])}} is_required=='yes')?'required':''}}>
@endforeach
{{Form::close()}}
@if($message = Session::get('success')) @endif @if($message = Session::get('error')) @endif @if($get_cookie['enable_cookie'] == 'on') @include('layouts.cookie_consent') @endif