@php $currentAppTheme = ''; // Default theme from settings $currentAppTheme = getUserAppTheme(); @endphp @php $appName = getAppSettings('name'); $currentAppTheme = ''; // Default theme from settings $currentAppTheme = getUserAppTheme(); @endphp {{ (isset($title) and $title) ? ' - ' . $title : __tr('Welcome') }} - {{ $appName }} {!! __yesset([ 'static-assets/packages/fontawesome/css/all.css', 'static-assets/packages/bootstrap-icons/font/bootstrap-icons.css', ]) !!}
{{ __tr('Transform Customer Engagement with WhatsApp – Experience the Power of __appName__', [ '__appName__' => $appName, ]) }}
{{ __tr( 'Unlock the full potential of customer engagement with __appName__ your comprehensive WhatsApp Marketing Platform.', [ '__appName__' => $appName, ], ) }}
lw-masthead
{{ __tr('Why __appName__ Stands Out :', [ '__appName__' => $appName, ]) }}

{{ __tr('Top Reasons to Choose Our Services') }}

{{ __tr('Increased Engagement') }}

{{ __tr('Engage directly with your customers in real-time on WhatsApp.') }}

{{ __tr('Higher Conversion Rates') }}

{{ __tr('Turn conversations into conversions with targeted messaging through __appName__.', [ '__appName__' => $appName, ], ) }}

{{ __tr('24/7 Customer Support') }}

{{ __tr("Automated responses ensure you're always there for your customers with __appName__.", [ '__appName__' => $appName, ], ) }}

{{ __tr('__appName__ : Simplify Connections, Boost Your Brand!', [ '__appName__' => $appName, ]) }}

{{ __tr('Campaign Management') }}

{{ __tr('Effortlessly manage your campaigns with our intuitive campaign management feature. Create or schedule campaigns instantly for all contacts or specific groups, allowing for immediate reach or strategic timing. Maximize the impact of your marketing efforts and take control of your messaging with ease.') }}

{{ __tr('Learn more') }}

{{ __tr('Application Colors System') }}

{{ __tr( 'Custom app colors made easy — __appName__ gives you the power of pick and apply the colors to customize your app as per your choice.', [ '__appName__' => $appName, ], ) }}

{{ __tr('Learn more') }}

{{ __tr('AI Bot Integration For Vendor Using Flowise AI Setting') }}

{{ __tr('Flowise AI offers AI-powered chatbots for vendors to automate customer interactions and enhance engagement.') }}

{{ __tr('Learn more') }}

{{ __tr('Subscription System Used Stripe') }}

{{ __tr('Automate recurring Subscription Payments effortlessly with Stripe. Receive payments from your users seamlessly, ensuring a smooth and efficient subscription process. Simplify your payment management and enhance user experience with our Stripe integration.') }}

{{ __tr('Learn more') }}

{{ __tr('Tech Empowerment') }}

{{ __tr('Features that would make your life easier with WhatsApp Marketing') }}

{{ __tr('Embedded Signup') }}

{{ __tr('Onboard customers with ease with our integrated Embedded Signup system.') }}

{{ __tr('Template Management') }}

{{ __tr('Handle templates directly within the application without requiring a visit to Meta for creating templates.') }}

{{ __tr('Multiple Phone Numbers') }}

{{ __tr('Supports multiple phone numbers for same WhatsApp Business Account.') }}

{{ __tr('WhatsApp Chat') }}

{{ __tr( '__appName__ chat feature replicates the native WhatsApp interface, guaranteeing users a seamless and familiar messaging experience.', [ '__appName__' => $appName, ], ) }}

{{ __tr('Bot Replies/ Chat Bot') }}

{{ __tr('Automate responses and engage customers 24/7 with intelligent bot replies through.') }}

{{ __tr('APIs to connect with other services') }}

{{ __tr('API’s enable seamless connection between different services, allowing data sharing and functionality integration.') }}

{{ __tr('Custom Fields') }}

{{ __tr('Personalize your messages with user base information and custom fields tailored to your audience on __appName__', ['__appName__' => $appName]) }}

{{ __tr('Team Members/Agents') }}

{{ __tr('Onboard customers with ease with our integrated Embedded Signup system.') }}

{{ __tr('Built for Customer Engagements') }}

{{ __tr('__appName__ is a helpful tool for businesses to communicate better with customers. It makes talking to customers easier and simpler, helping businesses grow and build strong relationships.', ['__appName__' => $appName]) }}

{{ __tr('Sign up now') }}

{{ __tr('AI Chat Bot Quickly build Automated Chatbots') }}

{{ __tr('Bot Flow Builder') }}

{{ __tr('Our Advanced Bot Flow Builder streamlines bot conversation creation, enabling easy setup of triggers between bots using button and list row links.') }}

{{ __tr('Bot Timing Restrictions Setting') }}

{{ __tr('Set bot operation hours with start/end times, timezone, and enable timing for specific bots, applying restrictions only to selected bots.') }}

{{ __tr('AI General Setting') }}

{{ __tr('A message will be sent if the AI Bot fails to respond due to an error. You can also enable the AI Bot automatically for all new contacts created from incoming messages or imports.') }}

{{ __tr('Pricing or Features') }}

@php $freePlanDetails = getFreePlan(); $freePlanStructure = getConfigFreePlan(); $paidPlans = getPaidPlans(); $planStructure = getConfigPaidPlans(); @endphp @if ($freePlanDetails['enabled'])

{{ $freePlanDetails['title'] }}


{{ formatAmount(0, true, true) }} {{ __tr('/ monthly') }}


{{ formatAmount(0, true, true) }}{{ __tr('/ yearly') }}

{{ __tr('+ WhatsApp Cloud Messaging Charges') }}
    @foreach ($freePlanStructure['features'] as $featureKey => $featureValue) @php $configFeatureValue = $featureValue; $featureValue = $freePlanDetails['features'][$featureKey]; @endphp
  • @if (isset($featureValue['type']) and $featureValue['type'] == 'switch') @if (isset($featureValue['limit']) and $featureValue['limit']) @else @endif {{ $configFeatureValue['description'] }} @else @if (isset($featureValue['limit']) and $featureValue['limit'] < 0) {{ __tr('Unlimited') }} @elseif(isset($featureValue['limit'])) {{ __tr($featureValue['limit']) }} @endif {{ $configFeatureValue['description'] }} {{ $configFeatureValue['limit_duration_title'] ?? '' }} @endif
  • @endforeach
@endif @foreach ($planStructure as $planKey => $plan) @php $planId = $plan['id']; $features = $plan['features']; $savedPlan = $paidPlans[$planKey]; $charges = $savedPlan['charges']; if (!$savedPlan['enabled']) { continue; } @endphp

{{ $savedPlan['title'] ?? $plan['title'] }}


@foreach ($charges as $itemKey => $itemValue) @php if (!$itemValue['enabled']) { continue; } @endphp

{{ formatAmount($itemValue['charge'], true, true) }} /{{ Arr::get($plan['charges'][$itemKey], 'title', '') }}


@endforeach {{ __tr('+ WhatsApp Cloud Messaging Charges') }}
    @foreach ($plan['features'] as $featureKey => $featureValue) @php $configFeatureValue = $featureValue; $featureValue = $savedPlan['features'][$featureKey]; @endphp
  • @if (isset($featureValue['type']) and $featureValue['type'] == 'switch') @if (isset($featureValue['limit']) and $featureValue['limit']) @else @endif {{ $configFeatureValue['description'] }} @else @if (isset($featureValue['limit']) and $featureValue['limit'] < 0) {{ __tr('Unlimited') }} @elseif(isset($featureValue['limit'])) {{ __tr($featureValue['limit']) }} @endif {{ $configFeatureValue['description'] }} {{ $configFeatureValue['limit_duration_title'] ?? '' }} @endif
  • @endforeach
@endforeach

{{ __tr('Success Stories from the __appName__ Community', [ '__appName__' => $appName, ]) }}

{{ __tr( 'Using __appName__ has transformed our customer engagement strategy. The import/export feature is a game-changer for managing our contacts efficiently.', [ '__appName__' => $appName, ], ) }}

{{ __tr('John Doe') }}

{{ __tr('Marketing Manager') }}

{{ __tr( 'The automation capabilities of __appName__, especially the bot replies, have significantly reduced our response times and improved customer satisfaction.', [ '__appName__' => $appName, ], ) }}

{{ __tr('Jane Smith') }}

{{ __tr('Customer Service Lead') }}

{{ __tr( '__appName__\'s intuitive design and easy Facebook WhatsApp Business integration made it simple for us to start our marketing campaigns quickly.', [ '__appName__' => $appName, ], ) }}

{{ __tr('Alex Johnson') }}

{{ __tr('Digital Marketing Specialist') }}

{{ __tr('Frequently Asked Questions') }}

{{ __tr( 'Signing up for __appName__ is easy and straightforward. Just visit our sign-up page, fill in your details, and follow the instructions to get started.', [ '__appName__' => $appName, ], ) }}
{{ __tr( 'Yes, __appName__ supports importing contacts through XLSX files. You can easily upload your existing customer database and start sending messages right away.', [ '__appName__' => $appName, ], ) }}
{{ __tr( '__appName__ offers 24/7 customer support through live chat, email, and phone. Our dedicated team is here to help you with any issues or questions you might have.', [ '__appName__' => $appName, ], ) }}
{!! __yesset([ 'dist/js/common-vendorlibs.js', 'dist/js/vendorlibs.js', 'dist/packages/bootstrap/js/bootstrap.bundle.min.js', 'dist/js/jsware.js', ]) !!} {!! getAppSettings('page_footer_code_all') !!} @if (isLoggedIn()) {!! getAppSettings('page_footer_code_logged_user_only') !!} @endif