@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('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
@php $openaiContentType = $data->openai_content_type ?? 'all'; $geminiContentType = $data->gemini_content_type ?? 'all'; $pollinationsContentType = $data->pollinations_content_type ?? 'all'; @endphp
{{ __('OpenAI') }}
{{-- Text Model --}}
{{ __('Examples') . ': ' . __('gpt-4o-mini, gpt-4o, gpt-4.1, gpt-3.5-turbo') }}
{{-- Image Model --}}
{{ __('Examples') . ': ' . __('gpt-image-1, dall-e-3, dall-e-2') }}
{{ __("Selecting 'All' allows users to generate both text and images") . '. ' . __("Selecting 'Text Only' restricts generation to text content only, and selecting 'Image Only' allows image generation only") . '.' }}
{{ __('Google Gemini') }}
{{-- API Key --}}
{{-- Text Model --}}
{{__('Examples') . ': '. __('gemini-1.5-flash, gemini-1.5-pro, gemini-2.0-flash') }}
{{-- Image Model --}}
{{ __('Examples').': ' . __('imagen-4.0-generat-001, imagen-4.0-fast-generate-001') }}
{{ __('Gemini Image models must include the version suffix (-001)') . '. ' . __('Without the suffix, the API will return a 404 model not found error') }}
{{ __("Selecting 'All' allows users to generate both text and images") . '. ' . __("Selecting 'Text Only' restricts generation to text content only, and selecting 'Image Only' allows image generation only") . '.' }}
{{ __('Pollinations AI') }}
{{ __("Selecting 'All' allows users to generate both text and images") . '. ' . __("Selecting 'Text Only' restricts generation to text content only, and selecting 'Image Only' allows image generation only") . '.' }}
@endsection