@extends('panel.layout.app') @section('title', __('Subscription Payment')) @section('content')
@if($exception != null)

{{ $exception }}

@else
@if($checkoutform->getStatus() == 'success') {!! $checkoutform->getCheckoutFormContent() !!}
@else

{{__('Error Code')}}: {{ $checkoutform->getErrorCode() }}

{{ $checkoutform->getErrorMessage() }}

{{__('If error persist, please contact with us.')}}

@endif

{{__('Note that, we do not collect or store any personal data. All information above are sent to iyzico directly.')}}

{{__('By purchase you confirm our')}} {{__('Terms and Conditions')}}

@if ($plan->is_featured == 1)
@endif
{{ __($plan->name) }}

{!! displayCurrPlan(currency()->symbol, $plan->price, $newDiscountedPrice) !!} / {{__(formatCamelCase($plan->frequency))}}

  • {{__('Tax')}} ({{$taxRate}}%)
    {!! displayCurr(currency()->symbol, $taxValue) !!}
  • {{__('Total')}}
    {!! displayCurr(currency()->symbol, $plan->price, $taxValue, $newDiscountedPrice) !!}

    @if($plan->trial_days != 0)
  • {{ number_format($plan->trial_days)." ".__('Days of free trial.') }}
  • @endif
  • {{ __('Access') }} {{ __($plan->plan_type) }} {{ __('Templates') }}
  • @foreach (explode(',', $plan->features) as $item)
  • {{ $item }}
  • @endforeach @if ($plan->display_word_count)
  • @if ((int) $plan->total_words >= 0) {{ number_format($plan->total_words) }} {{ __('Word Tokens') }} @else {{ __('Unlimited') }} {{ __('Word Tokens') }} @endif
  • @endif @if ($plan->display_imag_count)
  • @if ((int) $plan->total_images >= 0) {{ number_format($plan->total_images) }} {{ __('Image Tokens') }} @else {{ __('Unlimited') }} {{ __('Image Tokens') }} @endif
  • @endif
@endif
@endsection