@extends('layouts.app') @push('head-script') @endpush @section('content') @php $gender = [ 'male' => __('modules.front.male'), 'female' => __('modules.front.female'), 'others' => __('modules.front.others') ]; @endphp

@lang('app.edit')

@csrf @method('PUT')
@lang('modules.front.personalInformation')
@include('admin.job-applications.required-columns', ['job' => $application->job, 'application' => $application, 'gender' => $gender])
@include('admin.job-applications.required-sections', ['section_visibility' => $jobs[0]->section_visibility, 'application' => $application])
@if(count($jobQuestion) > 0)
@lang('modules.front.additionalDetails')
@endif
@lang('app.status')
@endsection @push('footer-script') @endpush