@extends('layouts.app') @section('css') @endsection @section('content')
@csrf
{{ __('AI Code Generator') }}

{{ __('Create a various code by using only text commands') }}

{{ __('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
{{ __('Programming Language') }}
{{ __('Provide Instructions') }}
@error('instructions')

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

@enderror
{{ __('AI Model') }}
@error('document')

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

@enderror
								
							
{{ __('Generate your code easily') }}

{{ __('Generating the code, please wait') }}

@endsection @section('js') @endsection