@php $currantLang = \Auth::user()->lang; @endphp
@csrf
{{ Form::label('template', __('For What'), ['class' => 'col-form-label']) }}
@foreach ($templateName as $key => $value)
@endforeach
{{ Form::label('language', __('Language'), ['class' => 'col-form-label']) }}
{{ Form::label('', __('Tone'), ['class' => 'col-form-label']) }} @php $tone = [ 'funny' => 'funny', 'casual' => 'casual', 'excited' => 'excited', 'professional' => 'professional', 'witty' => 'witty', 'sarcastic' => 'sarcastic', 'feminine' => 'feminine', 'masculine' => 'masculine', 'bold' => 'bold', 'dramatic' => 'dramatic', 'gumpy' => 'gumpy', 'secretive' => 'secretive', ]; @endphp {{ Form::select('tone', $tone, null, ['class' => 'form-control']) }}
{{ Form::label('', __('AI Creativity'), ['class' => 'col-form-label']) }}
{{ Form::label('', __('Number of Result'), ['class' => 'col-form-label']) }}
{{ Form::label('', __('Maximum Result Length'), ['class' => 'col-form-label']) }} {{ Form::number('result_length', 10, ['class' => 'form-control']) }}
{{ __('Generate') }} {{ __('Copy Text') }} {{ __('Copy Selected Text') }}
{{ Form::textarea('description', null, ['class' => 'form-control', 'rows' => 5, 'placeholder' => __('Description'), 'id' => 'ai-description']) }}