@extends('admin.layout') @section('content')
@csrf
{{ __('AWS Credentials') }} {{ '('.__('For Tenants') .')'}}
@if ($errors->has('aws_access_key_id'))

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

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

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

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

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

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

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

@endif
{{__('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_chat_link'))

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

@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