@extends(view_path('master')) @section('additional_head_tags') @if(captcha_is_enabled('contact') && captcha_is('google')) {!! google_captcha_js() !!} @endif @endsection @section('body')
{{ __('Support') }}
{{ __('Help, contact and frequently asked questions') }}
{!! $support->content ?? null !!}
@if($faqs->count())
{{ __('Frequently asked questions') }}
@foreach($faqs as $faq)

{{ $faq->question }}

{!! $faq->answer !!}
@endforeach
@endif
{{ __('Contact us') }}
@csrf @if(session('support_response'))
{{ session('support_response') }}
@endif
@if(captcha_is_enabled('contact'))
{!! render_captcha() !!} @if(captcha_is('mewebstudio')) @endif
@endif
@endsection