@extends('frontend.layouts.app') @section('page_title') Job Application @endsection @push('head-scripts') @endpush @section('content')
Breadcrumb

Job Application Form

Apply for {{ $jobs->title }} Job
@csrf @if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Personal Information
@if(old('city')) @endif @error('city') {{ $message }} @enderror
@if(old('province')) @endif @error('province') {{ $message }} @enderror
Last Education
@if(old('degree')) @endif @error('degree') {{ $message }} @enderror
Previous Employment
Attach Your Resume
Allowed: docx, doc, pdf, txt
{!! captcha_img('flat') !!}
@endsection @push('footer-scripts') @endpush