@extends('layouts.front') @section('header-text')

{{ ucwords($job->title) }}

{{ ucwords($job->location->location) }}
@endsection @section('content')
@lang('modules.front.jobOpenings') » {{ ucwords($job->title) }}
@if($job->company->show_in_frontend == 'true') @endif
Job Title {{ ucwords($job->title) }}
Location {{ $job->location->location }} | {{ $job->location->zone }}
Company @lang('app.by') {{ ucwords($job->company->company_name) }}
Expertise {{ ucwords($job->category->name) }}
@lang('menu.skills') @if(count($job->skills) > 0)
@foreach($job->skills as $skill) {{ $skill->skill->name }} @endforeach
@endif
@lang('modules.jobs.jobDescription')
Job Roles and Responsibilities
{!! $job->job_description !!}
@lang('modules.jobs.jobRequirement')
{!! $job->job_requirement !!}

@endsection