@extends('layouts.app') {{-- Or your main user-facing layout --}} @section('title', 'AI Image Studio') @section('header_title', 'AI Image Studio') @section('content')

AI Image Studio

Generate unique images or find the perfect stock photo for your website.

@include('webpilotai::user.partials._session_messages')
@if($dalleEnabled || count($aiImageModels) > 0)

Generate Image with AI

@csrf
@if(count($aiImageModels) > 0 && $dalleConfig)
@else

AI Image models are not configured.

@endif

Generated images will appear here.

@endif @if($pexelsEnabled)

Search Stock Photos (Pexels)

@csrf

Search results will appear here.

{{-- Pagination controls will be added here by JS --}}
@endif @if(!$dalleEnabled && count($aiImageModels) == 0 && !$pexelsEnabled)

The AI Image Studio is not currently configured. Please contact an administrator.

@endif
@endsection @push('scripts') @endpush