@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()->images == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->images + auth()->user()->images_prepaid) }} {{ __('Media Credits') }} @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') }})

@foreach ($data as $image)
@if ($image->vendor == 'sd') {{ __('Stable Diffusion') }} @elseif ($image->vendor == 'openai') {{ __('Dalle') }} @elseif ($image->vendor == 'falai') {{ __('FLUX') }} @elseif ($image->vendor == 'midjourney') {{ __('Midjourney') }} @elseif ($image->vendor == 'clipdrop') {{ __('Clipdrop') }} @endif

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

@endforeach
@endsection @section('js') @endsection {{-- if (item == 'openai') { // Openai is active $('.sd-feature').addClass('hide-all'); $('.openai-feature').addClass('show-all'); if ($(window).width() < 940 ) { $('.openai-select-feature').addClass('show-all'); } $('.sd-select-feature').removeClass('show-all').addClass('hide-all'); } else { //SD is active $('.sd-feature').removeClass('hide-all'); $('.openai-feature').removeClass('show-all').addClass('hide-all'); $('.openai-select-feature').removeClass('show-all').addClass('hide-all'); if ($(window).width() < 940 ) { $('.sd-select-feature').addClass('show-all'); } } --}}