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

{{ __('Create New Pre Paid Plan') }}

@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
{{ __('Currency') }} ({{ __('Required') }})
@error('currency')

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

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

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

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

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

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