@extends('layouts.admin') {{-- Or your main admin layout --}} @section('title', 'Create User Website (Admin)') @section('header_title', 'Create New User Website') @section('content')

New Website Details (Admin Creation)

@include('webpilotai::admin.partials._validation_errors') @include('webpilotai::admin.partials._session_messages')
@csrf {{-- User Selection --}}
{{-- Website Name --}}
{{-- Description Prompt --}}
{{-- AI Template Selection --}}
@if($aiTemplates->isEmpty())

No AI templates are currently available.

@else
@foreach($aiTemplates as $template) @endforeach
@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 @endif
{{-- AI Model Selection --}}
@if($aiModels->isEmpty())

No AI models are currently available. Please configure them in settings.

@else @endif
{{-- Status Selection (Admin only) --}}

'Pending Generation' will automatically queue the site for AI processing.

{{-- Actions --}}
Cancel
@endsection @push('styles') @endpush