@extends('backend.layout') @section('content')
@csrf
{{ __('Google Map') }}
@if ($errors->has('google_map_status'))

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

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

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

@endif
{{ __('If the Google Maps is disabled:') }}
  • {{ __('Address suggestions will not be available in the location search input.') }}

  • {{ __('Google will not suggest locations under address inputs.') }}

  • {{ __('Radius-base searchings will be disabled.') }}

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

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

@endif

{{ __('After a location is seached, all the available services which are located within this radius will be displayed.') }}

@csrf
{{ __('Disqus') }}
@if ($errors->has('disqus_status'))

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

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

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

@endif
@csrf
{{ __('Google Recaptcha') }}
@if ($errors->has('google_recaptcha_status'))

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

@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
@csrf
{{ __('Login via Facebook') }}
@if ($errors->has('facebook_login_status'))

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

@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
@csrf
{{ __('Login via Google') }}
@if ($errors->has('google_login_status'))

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

@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
@endsection