@extends('frontend::layouts.app')
@section('title', $metaTags['metaTitle'])
@section('description', $metaTags['metaDescription'])
@section('keywords', $metaTags['metaKeywords'])
@section('other_meta_tags')
{!! $metaTags['otherMetaTags'] !!}
@endsection
@section('content')
{{ $cms->section_title }}
{!! $cms->sub_title !!}
{{ $cms->title_part_one }}
{{ $cms->title_part_two }}
{{ $cms->sub_description }}
@if ($cms->images_value)
@foreach ($cms->images_value as $image)
@endforeach
@endif
{{ $cms->section_two_title_part_one }}
{{ $cms->counter_title }}
{{ $cms->counter_subtitle }}
{{ $cms->section_three_bg_title }}
{{ $cms->section_three_title }}
@foreach ((is_string($cms->section_three_lists) ? json_decode($cms->section_three_lists, true) : $cms->section_three_lists) ?? [] as $list)
- {{ $list }}
@endforeach
{!! $cms->section_three_sub_description !!}
@endsection
@push('js')
@endpush