@extends('layouts.app') @section('css') @endsection @section('content')
@csrf
{!! $template->icon !!}
{{ __('Startup Name Generator') }} @if($template->professional) {{ __('Pro') }} @endif

{{ __($template->description) }}

{{ __('Your Balance is') }} {{ number_format(auth()->user()->available_words + auth()->user()->available_words_prepaid) }} {{ __('Words') }}
{{ __('Language') }}
@error('language')

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

@enderror
{{ __('Seed words') }}
@error('keywords')

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

@enderror
{{ __('Startup Description') }}
@error('description')

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

@enderror
{{ __('Creativity') }}
{{ __('Number of Results') }}
{{ __('Max Result Length') }}
@error('words')

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

@enderror
@error('document')

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

@enderror
@error('content')

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

@enderror
@endsection @section('js') @endsection