@extends('admin.layout') @section('content')
@csrf
{{__('Google Recaptcha')}}
@if ($errors->has('is_recaptcha'))

{{$errors->first('is_recaptcha')}}

@endif
@if ($errors->has('google_recaptcha_site_key'))

{{$errors->first('google_recaptcha_site_key')}}

@endif
@if ($errors->has('google_recaptcha_secret_key'))

{{$errors->first('google_recaptcha_secret_key')}}

@endif
{{__('Disqus')}}
@if ($errors->has('is_disqus'))

{{$errors->first('is_disqus')}}

@endif
{{--
@if ($errors->has('is_user_disqus'))

{{$errors->first('is_user_disqus')}}

@endif
--}}
@if ($errors->has('disqus_shortname'))

{{$errors->first('disqus_shortname')}}

@endif
{{__('Tawk.to')}}

{{__('If you enable Tawk.to, then WhatsApp must be disabled.')}}

@if ($errors->has('is_tawkto'))

{{$errors->first('is_tawkto')}}

@endif
@if ($errors->has('tawkto_property_id'))

{{$errors->first('tawkto_property_id')}}

@endif
{{__('WhatsApp Chat Button')}}

{{__('If you enable WhatsApp, then Tawk.to must be disabled.')}}

{{__('Enter Phone number with Country Code')}}

@if ($errors->has('whatsapp_header_title'))

{{$errors->first('whatsapp_header_title')}}

@endif
@if ($errors->has('whatsapp_popup_message'))

{{$errors->first('whatsapp_popup_message')}}

@endif
@if ($errors->has('whatsapp_popup'))

{{$errors->first('whatsapp_popup')}}

@endif
@endsection