@extends('layouts.admin') {{-- Or your main admin layout --}} @section('title', 'Create AI Style Preset') @section('header_title', 'Create New AI Style Preset') @section('content')

New AI Style Preset Details

@include('webpilotai::admin.partials._validation_errors')
@csrf
{{-- Name --}}
{{-- Type --}}
{{-- Description --}}

A brief explanation of what this style preset does.

{{-- Configuration (JSON) --}}

Enter valid JSON. Refer to documentation for structure based on 'Preset Type'.
Example for Color Palette: {"primary": "#3498db", "secondary": "#2ecc71"}
Example for Font Scheme: {"headings": {"family": "Montserrat", "weight": "700"}, "body": "Lato"}

{{-- Preview Image --}}

Recommended size: 300x200px. Max 2MB.

{{-- Flags --}}
{{-- Actions --}}
Cancel
@endsection @push('styles') {{-- For a better JSON editing experience, consider CodeMirror or a similar library --}} {{-- --}} {{-- --}} @endpush @push('scripts') {{-- --}} {{-- --}} {{-- --}} @endpush {{-- Create a partial for validation errors if you don't have one --}} {{-- Example: resources/views/admin/partials/_validation_errors.blade.php --}} {{-- @if ($errors->any()) @endif --}}