@extends(view_path('master')) @section('additional_head_tags') @if(captcha_is_enabled('contact') && captcha_is('google')) {!! google_captcha_js() !!} @endif @endsection @section('body')
{{ __('Support') }}
{!! $support->content ?? null !!}
@if($faqs->count())
{{ __('Frequently asked questions') }}
@foreach($faqs as $faq)
{{ $faq->question }}
{!! $faq->answer !!}
@endforeach
@endif
@csrf @if(session('support_response'))
{{ session('support_response') }}
@endif
@if(captcha_is_enabled('contact')) @error('captcha')
{{ $message }}
@enderror @error('g-recaptcha-response')
{{ $message }}
@enderror
{!! render_captcha() !!} @if(captcha_is('mewebstudio')) @endif
@endif
@endsection