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

{{ __('Update Subscription Plan') }}

@method('PUT') @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
{{ __('Free Plan Days') }}
@error('days')

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

@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
{{ __('Flutterwave Plan ID') }} ({{ __('Required for Flutterwave') }})
@error('flutterwave_gateway_plan_id')

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

@enderror
{{ __('Paddle Plan ID') }} ({{ __('Required for Paddle') }})
@error('paddle_gateway_plan_id')

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

@enderror
{{ __('Included Features') }}
{{ __('Words included in the Plan') }} ({{ __('Renewed Monthly') }})
{{ __('Each text generation task counts output words created') }}. {{ __('Set as -1 for unlimited words') }}.
@error('words')

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

@enderror
{{ __('Images included in the Plan') }} ({{ __('Renewed Monthly') }})
{{ __('Valid for all image sizes') }}. {{ __('Set as -1 for unlimited images') }}.
@error('images')

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

@enderror
{{ __('Characters included in the Plan') }} ({{ __('Renewed Monthly') }})
{{ __('For AI Voiceover feature') }}. {{ __('Set as -1 for unlimited characters') }}.
@error('characters')

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

@enderror
{{ __('Minutes included in the Plan') }} ({{ __('Renewed Monthly') }})
{{ __('For AI Speech to Text feature') }}. {{ __('Set as -1 for unlimited minutes') }}.
@error('minutes')

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

@enderror
{{ __('OpenAI Model for All Template Results') }}
{{ __('OpenAI Model for All AI Chats') }}
{{ __('Template Categories Access') }}
{{ __('AI Chat Categories Access') }}
{{ __('Max Allowed Words Limit for All Text Results') }}
@error('tokens')

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

@enderror
{{ __('AI Image Feature') }}
{{ __('AI Voiceover Feature') }}
{{ __('AI Speech to Text Feature') }}
{{ __('AI Chat Feature') }}
{{ __('AI Code Feature') }}
{{ __('Personal OpenAI API Usage Feature') }}
{{ __('Personal Stable Diffusion API Usage Feature') }}
{{ __('OpenAI Image Engine') }}
{{ __('Stable Diffusion Image Engine') }}
{{ __('Number of Team Members') }}
@error('team-members')

{{ $errors->first('team-members') }}

@enderror
{{ __('Primary Heading') }} ({{ __('Optional') }})
{{ __('Plan Features') }} ({{ __('Comma Seperated') }})
@error('features')

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

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