@extends('layouts.app') @section('title', 'Create New AI Website') @section('header_title', 'Create Your AI Website') @section('content')

Let's Build Your Website!

Describe your vision, and our AI will bring it to life.

@include('webpilotai::user.partials._validation_errors') @include('webpilotai::user.partials._session_messages') {{-- Use user specific or ensure admin partial is suitable --}}
@csrf

If left blank, a name will be suggested by the AI.

{{-- AI Template Selection --}}
@if($aiTemplates->isEmpty())

No AI templates are currently available.

@else
@foreach($aiTemplates as $template) @endforeach
Selecting a template can help guide the AI in structuring your website. @endif
{{-- AI Style Presets Selection --}}
@if($aiStylePresets->isEmpty())

No AI style presets are currently available.

@else @php $groupedStylePresets = $aiStylePresets->groupBy('type'); @endphp @foreach($groupedStylePresets as $type => $presets)
{{ Str::title(str_replace('_', ' ', $type)) }}
@foreach($presets as $preset) @endforeach
@endforeach Selecting style presets can further customize the look and feel. @endif
{{-- Define Website Pages --}}

List the pages you want for your website (e.g., Home, About Us, Services, Contact). If left empty, default pages (Home, About, Contact) will be created.

{{-- Initial page input (optional, can be added via JS too) --}} {{--
--}}
{{-- Website Assets --}}

Upload images that the AI can use when generating your website.

Accepted types: JPG, PNG, GIF, WEBP. Max 5MB per file.

@if($aiModels->isEmpty())

No AI models are currently available. Please contact support.

@else @endif
Cancel
@endsection @push('styles') @endpush @push('scripts') @endpush