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

{{ __('Edit Prepaid 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('price')

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

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

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

@enderror
{{ __('Featured Plan') }}
{{ __('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 images sizes') }}
@error('images')

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

@enderror
{{ __('Total Characters included in Plan') }}
{{ __('For AI Voiceover feature') }}
@error('characters')

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

@enderror
{{ __('Total Minutes included in Plan') }}
{{ __('For AI Speech to Text feature') }}
@error('minutes')

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

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