@extends('saas::frontend.layouts.master') @section('title', @$data['title']) @section('styles') @endsection @section('content')
@csrf @php $startDate = \Carbon\Carbon::now()->format('M d, Y'); if (\Modules\Saas\Enums\PricingPlanDurationType::MONTHLY == @$data['pricingPlanPrice']->planDurationType->name) { $endDate = \Carbon\Carbon::now()->addMonths(1)->format('M d, Y'); } elseif (\Modules\Saas\Enums\PricingPlanDurationType::QUARTERLY == @$data['pricingPlanPrice']->planDurationType->name) { $endDate = \Carbon\Carbon::now()->addMonths(3)->format('M d, Y'); } elseif (\Modules\Saas\Enums\PricingPlanDurationType::HALF_YEARLY == @$data['pricingPlanPrice']->planDurationType->name) { $endDate = \Carbon\Carbon::now()->addMonths(6)->format('M d, Y'); } elseif (\Modules\Saas\Enums\PricingPlanDurationType::YEARLY == @$data['pricingPlanPrice']->planDurationType->name) { $endDate = \Carbon\Carbon::now()->addMonths(12)->format('M d, Y'); } @endphp

{{ _trans('frontend.Billing Details') }}

@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('trade_licence_number'))
{{ $errors->first('trade_licence_number') }}
@endif
@if ($errors->has('subdomain'))
{{ $errors->first('subdomain') }}
@endif
@if ($errors->has('total_employee'))
{{ $errors->first('total_employee') }}
@endif
@if ($errors->has('business_type'))
{{ $errors->first('business_type') }}
@endif
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
@if (@base_settings('is_demo_checkout')) @endif

@if (@base_settings('is_payment_type_cash') || @base_settings('is_payment_type_cheque') || @base_settings('is_payment_type_bank_transfer'))
@endif
@if (isMainCompany() && isRecaptchaEnable()) {{ loadRecaptcha() }}
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
@if (@$data['pricingPlanPrice']->pricingPlan->is_popular)
{{ _trans('common.Most Popular') }}
@endif

{{ @$data['pricingPlanPrice']->pricingPlan->name }} / {{ @$data['pricingPlanPrice']->planDurationType->name }}

{{ currency_format(number_format($data['pricingPlanPrice']->price, 2)) }}

  • {{ _trans('common.Start Date') }}

    {{ showDate($startDate) }}

  • {{ _trans('common.End Date') }}

    {{ showDate($endDate) }}

{{ _trans('common.Total') }} {{ currency_format(number_format($data['pricingPlanPrice']->price, 2)) }}

@endsection @section('scripts') @if (old('payment_gateway') == 'Offline Payment') @endif @if (old('payment_gateway') == 'Demo Checkout') @endif @if (old('payment_gateway') == 'Stripe') @endif @endsection