@extends('layouts.home_page.master') @section('title') {{ __($type ?? '') }} || @endsection @section('content') {{ __('home') }} {{ __('features') }} {{ __('about_us') }} {{ __('pricing') }} @if (count($faqs)) {{ __('faqs') }} @endif {{ __('contact') }} @if (count($guidances)) {{ __('guidance') }} @foreach ($guidances as $key => $guidance) {{ $guidance->name }} @if (count($guidances) > ($key + 1)) @endif @endforeach @endif {{ __('language') }} @foreach ($languages as $key => $language) {{ $language->name }} @if (count($languages) > ($key + 1)) @endif @endforeach {{ __('login') }} {{ __('start_trial') }} {{ __('home') }} {{ __('features') }} {{ __('about_us') }} {{ __('pricing') }} @if (count($faqs)) {{ __('faqs') }} @endif {{ __('contact') }} @if (count($guidances)) {{ __('guidance') }} @foreach ($guidances as $key => $guidance) {{ $guidance->name }} @if (count($guidances) > ($key + 1)) @endif @endforeach @endif {{ __('language') }} @foreach ($languages as $key => $language) {{ $language->name }} @if (count($languages) > ($key + 1)) @endif @endforeach {{-- --}} {{ __('login') }} {{ __('start_trial') }} {{-- --}} {{ __($type ?? '') }} @if ($type == 'privacy-policy') {!! htmlspecialchars_decode($settings['privacy_policy'] ?? '') !!} @endif @if ($type == 'terms-conditions') {!! htmlspecialchars_decode($settings['terms_condition'] ?? '') !!} @endif @if ($type == 'refund-cancellation') {!! htmlspecialchars_decode($settings['refund_cancellation'] ?? '') !!} @endif @endsection