@extends('layouts.app') @section('css') @endsection @section('content')
@csrf

{{ __('AI Article Wizard') }}

{{ __('Your Balance is') }} @if (auth()->user()->gpt_3_turbo_credits == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->gpt_3_turbo_credits + auth()->user()->gpt_3_turbo_credits_prepaid) }} {{ __('GPT 3.5 Turbo') }} {{ __('Words') }} @endif
1
{{ __('Get Ideas') }}
{{ __('STEP 1') }}
2
{{ __('Outlines') }}
{{ __('STEP 2') }}
3
{{ __('Talking Points') }}
{{ __('STEP 3') }}
4
{{ __('Images') }}
{{ __('STEP 4') }}
{{ __('Topic') }}
{{ __('Number of Topics') }}
{{ __('Maximum Topic Words') }}
{{ __('Keywords') }}

{{ __('or') }}

{{ __('Number of Keywords') }}
{{-- --}}
{{ __('AI Model') }}
{{ __('Writing Tone') }}
{{ __('Creativity') }}
{{ __('Point of View') }}
{{ __('Article Length') }}
@error('words')

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

@enderror
{{ __('Language') }}
@error('language')

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

@enderror
1
{{ __('Ideas List') }}
@endsection @section('js') @endsection