@extends('frontend.layouts.app') @section('meta_title'){{ $page->meta_title }}@stop @section('meta_description'){{ $page->meta_description }}@stop @section('meta_keywords'){{ $page->tags }}@stop @section('meta') @endsection @section('content') @php $lang = str_replace('_', '-', app()->getLocale()); $content = json_decode($page->getTranslation('content', $lang)); @endphp {{ $page->getTranslation('title') }} {{ $content->description }} {{ translate('Address') }} {!! str_replace("\n", "", $content->address) !!} {{ translate('Phone') }} {{ $content->phone }} {{ translate('Email Address') }} {{ $content->email }} @csrf {{ translate('Name') }} {{ translate('Email') }} {{ translate('Phone no. (optional)') }} {{ translate('Tell us about your query') }} @if(get_setting('google_recaptcha') == 1 && get_setting('recaptcha_contact_form') == 1) @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif @endif @if (env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null) {{ translate('Submit') }} @else {{ translate('Submit') }} @endif @endsection @section('script') @if(get_setting('google_recaptcha') == 1 && get_setting('recaptcha_contact_form') == 1) @endif @endsection
{{ $content->description }}