@extends('front.master.master') @section('title', __('recruitment')) @section('content')
{{__('Job title')}}

{{$job->title}}

{{__('Employer')}}
{{$job->employer}}
{{__('Category')}}
{{$job->category}}
{{__('Type of the job')}}
{{$job->kind}}
{{__('location')}}
{{$job->address}}

{{__('work tasks')}}

@foreach($job->Tasks as $t_key => $task)
0{{$t_key+1}}
{{$task->name}}
@endforeach

{{__('Required qualifications')}}

@foreach($job->Qualifications as $t_qua => $qualification)
0{{$t_qua+1}}
{{$qualification->name}}
@endforeach
{{__('Fill out the job application form')}}
{{$job->title}}
{{__('Employer')}}
{{$job->employer}}
@csrf
@endsection @section('script') @endsection