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

{{ __('AI Image Generator') }}

{{ __('Unleash your creativity with our AI image generator that produces stunning visuals in seconds') }}

{{ __('Your Balance is') }} @if (auth()->user()->available_dalle_images == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->available_dalle_images + auth()->user()->available_dalle_images_prepaid) }} {{ __('Dalle Images') }}@endif | @if (auth()->user()->available_sd_images == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->available_sd_images + auth()->user()->available_sd_images_prepaid) }} {{ __('SD Images') }}@endif

{{ __('Drop your image here or browse') }}

({{ __('PNG Images') }} / {{ __('5MB Max') }})

{{ __('Select your image that you want to upscale') }}

({{ __('PNG Images') }} / {{ __('5MB Max') }})

{{ __('Upload your image with transparent target area for inpainting') }}

({{ __('PNG Images') }} / {{ __('5MB Max') }})

{{ __('Upload your target image') }}

({{ __('Square PNG Images') }} / {{ __('4MB Max') }})

{{ __('Upload your mask image') }}

({{ __('Square PNG Images') }} / {{ __('4MB Max') }})

{{ __('Upload your image to create variations') }}

({{ __('Square PNG Images') }} / {{ __('4MB Max') }})

@if (config('settings.image_vendor') == 'stable_diffusion' || config('settings.image_vendor') == 'both')
@endif @if (config('settings.image_vendor') == 'openai' || config('settings.image_vendor') == 'both') @if ($openai_engine == 'Dalle 2')
@endif @endif
@foreach ($data as $image)
@if ($image->vendor == 'sd') {{ __('Stable Diffusion') }} @else {{ __('Dalle') }} @endif

{{ substr($image->description, 0, 63) }}...

@endforeach
@endsection @section('js') @endsection