@extends('website.layouts.app') @section('content')

{{ $page->background_sub_heading_en }}

{{ $page->background_heading_en }}

{{ $page->background_description_en }}
mark {{ $page->background_point_one_en }}
mark {{ $page->background_point_two_en }}
mark {{ $page->background_point_three_en }}
{{ str_replace('-', ' ', pathinfo($page->background_image, PATHINFO_FILENAME)) }}

{{ $page->verification_sub_heading_en }}

{{--

{{ $page->verification_sub_description_en }}

--}}

{{ $page->qualification_heading_en }}

{{ $page->qualification_description_en }}
mark {{ $page->qualification_point_one_en }}
mark {{ $page->qualification_point_two_en }}
{{ str_replace('-', ' ', pathinfo($page->qualification_image, PATHINFO_FILENAME)) }}

{{ $page->background_screening_en }}

@if (count($verifications)) @foreach ($verifications as $verification)
{{ str_replace('-', ' ', pathinfo(substr($verification->image,11), PATHINFO_FILENAME)) }}

{{ $verification->title_en }}

{!! $verification->sub_description_en !!}

{{--
Read more
--}}
@endforeach @endif
@if (!empty($faqs))

frequently asked questions

@foreach ($faqs as $index => $faq)
Faq

{!! Str::words($faq->title_en, 9, '') !!}

@php $words = explode(' ', $faq['description_en']); $previewWords = implode(' ', array_slice($words, 0, 10)); // First 10 words $remainingWords = implode(' ', array_slice($words, 10)); // Remaining words @endphp
{{ $previewWords }}...
@endforeach
@endif

{{ $preferences->help_heading_en }}

{{ $preferences->help_description_en }}

{{ str_replace('-', ' ', pathinfo($preferences->help_image, PATHINFO_FILENAME)) }}
@endsection