@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Create New Subscription Plan') }}

@csrf
{{ __('Plan Status') }}
@error('plan-status')

{{ $errors->first('plan-status') }}

@enderror
{{ __('Plan Name') }}
@error('plan-name')

{{ $errors->first('plan-name') }}

@enderror
{{ __('Price') }}
@error('cost')

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

@enderror
{{ __('Currency') }}
@error('currency')

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

@enderror
{{ __('Payment Frequence') }}
{{ __('Featured Plan') }}
{{ __('Free Plan') }}
@error('free-plan')

{{ $errors->first('free-plan') }}

@enderror
{{ __('Payment Gateways Plan IDs') }}
{{ __('PayPal Plan ID') }} ({{ __('Required for Paypal') }})
@error('paypal_gateway_plan_id')

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

@enderror
{{ __('Stripe Product ID') }} ({{ __('Required for Stripe') }})
@error('stripe_gateway_plan_id')

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

@enderror
{{ __('Paystack Plan Code') }} ({{ __('Required for Paystack') }})
@error('paystack_gateway_plan_id')

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

@enderror
{{ __('Razorpay Plan ID') }} ({{ __('Required for Razorpay') }})
@error('razorpay_gateway_plan_id')

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

@enderror
{{ __('Included Features') }}
{{ __('Total Words included in Plan') }}
{{ __('Each text generation task will count total input by user and output words by openai') }}
@error('words')

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

@enderror
{{ __('Total Images included in Plan') }}
{{ __('Valid for all image sizes') }}
@error('images')

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

@enderror
{{ __('OpenAI Model for All Text Results') }}
{{ __('Max Allowed Words Limit for All Text Results') }}
@error('tokens')

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

@enderror
{{ __('AI Image Creation') }}
{{ __('Templates Access') }}
{{ __('Primary Heading') }} ({{ __('Optional') }})
{{ __('Plan Features') }} ({{ __('Comma Seperated') }})
@error('features')

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

@enderror
{{ __('Cancel') }}
@endsection