@extends('layouts.start') @section('title', $job->title) @section('content')

{{ $job->title }}

@if(session()->has('message'))
{{ session('message') }} @if(session()->has('submitted') === true) View more Jobs @endif
@endif
@if($job->logo)
{{ $job->title }}
@endif

{{ $job->title }}

  • {{ $job->company }}
  • {{ $job->city . ', ' . $job->country }}
  • {{ $job->salary_range }}

Job Description

{!! $job->job_details !!}

Job Details

{!! $job->job_details !!}

Required Knowledge, Skills, and Abilities

{!! $job->skills !!}

@if(!session()->has('submitted') === true)

@csrf
Start Your Application Here
@if($errors->any())
{{ 'Seems your form contains error, kindly check to fix error' }}
@endif
@error('applicant_name') {{ $message }} @enderror
@error('applicant_email') {{ $message }} @enderror
@error('applicant_phone') {{ $message }} @enderror
@error('applicant_availability') {{ $message }} @enderror
@error('applicant_remote_experience') {{ $message }} @enderror
@error('applicant_linkedin_url') {{ $message }} @enderror
@error('applicant_resume') {{ $message }} @enderror
@endif

Job Overview

    {{--
  • Posted date : {{ $job->created_at->format('d M Y') }}
  • --}}
  • Location : {{ $job->city . ', ' . $job->country }}
  • Vacancy : 02
  • Job nature : {{ $job->employment_type }}
  • Salary : {{ $job->salary_range }}
  • {{--
  • Application date : 12 Sep 2020
  • --}}
@if(!session()->has('submitted') === true) @endif

Company Information

{{ $job->company }}

{!! $job->company_details !!}

  • Name: {{ $job->company }}
  • Web : {{ $job->company_url }}
@endsection @section('js') @endsection