@extends('web.layouts.container') @section('content')

{{$jobTitle1}}
{{$jobTitle2}}

{!! $jobPage->description !!}

{{-- --}} {{-- {{__('jobs.upload_cv')}}--}} {{-- --}}

{{$pages[0]->title}}

{!! $pages[0]->description !!}

@if(count($categories)) @foreach($categories as $category)
{{$category->name}}

({{$category->jobs()->count()}})

@endforeach @endif

{{$pages[1]->title}}

{!! $pages[1]->description !!}

@if(count($jobs)) @foreach($jobs as $job) @if($loop->iteration == 5) @break @endif

{{$job->name}}

{{$job->catName}}

{{__('main.read_more')}}

{{wordLimit(stripText($job->description), 33)}}

@endforeach @endif
@if(count($jobs) > 4) {{__('main.load_more')}} @endif
@endsection @section('inner_js') @endsection