@extends('layouts.admin') {{-- Or your main admin layout --}} @section('title', 'Edit AI Style Preset') @section('header_title', 'Edit AI Style Preset: ' . $aiStylePreset->name) @section('content')

Update AI Style Preset Details

@include('webpilotai::admin.partials._validation_errors')
@csrf @method('PUT')
{{-- 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 --}}
@if($aiStylePreset->preview_image_path)
Current Preview
@endif

Recommended size: 300x200px. Max 2MB. Uploading a new image will replace the current one.

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