@extends('admin.layout') @section('content')
Pusher Setup
@csrf
@if ($errors->has('pusher_app_id'))

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

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

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

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

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

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

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

@endif

Pusher credentials needed for Realtime notificaion after new order & call waiter in Admin panel with sound

Facebook Login
@csrf
@if ($errors->has('is_facebook_login'))

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

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

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

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

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

@endif

Facebook App ID & App Secret are required for Facebook Login.

Google Login
@csrf
@if ($errors->has('is_google_login'))

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

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

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

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

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

@endif

Goole Client ID & Client Secret are required for Google Login.

Twilio Credentials
@csrf
@if ($errors->has('twilio_sid'))

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

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

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

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

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

@endif

Notifications will be sent from this phone number

WhatsApp Chat Button
@csrf

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
Tawk.to
@csrf

If you enable Tawk.to, then WhatsApp must be disabled.

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

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

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

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

@endif
Disqus
@csrf
@if ($errors->has('is_disqus'))

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

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

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

@endif
Google Analytics
@csrf
@if ($errors->has('is_analytics'))

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

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

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

@endif
Appzi Feedback
@csrf
@if ($errors->has('is_appzi'))

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

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

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

@endif
AddThis
@csrf
@if ($errors->has('is_addthis'))

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

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

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

@endif
Google Recaptcha
@csrf
@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
Facebook Pexel
@csrf
@if ($errors->has('is_facebook_pexel'))

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

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

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

@endif
@endsection