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

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

@method('PUT') @csrf
{{ __('Plan Type') }} ({{ __('Required') }})
@error('plan-type')

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

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

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

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

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

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

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

@enderror
{{ __('PayPal Gateway Plan ID') }} ({{ __('Required') }})
@error('paypal_gateway_plan_id')

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

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

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

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

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

@enderror
{{ __('Payment Frequence') }} ({{ __('Duration in Days') }})
@error('duration')

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

@enderror
{{ __('Included Characters') }} ({{ __('Required') }})
@error('characters')

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

@enderror
{{ __('Bonus Characters') }} ({{ __('Optional') }})
@error('bonus')

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

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

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

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