@extends('layouts.app') @section('title', __('Admin Settings')) @section('content')
{{ __('Ai Prompt') }}
{{ __('Product Description Note') }}
@csrf
Note: Use {product_name} to insert the product’s name, and {short_description} to insert the product’s short description in the prompt.
@error('product_description')

{{ $message }}

@enderror
@hasPermission('admin.aiPrompt.update')
@endhasPermission
{{ __('Page Description Note') }}
@csrf
Note: If you use {title}, the page title will be automatically retrieved and inserted into the main prompt.
@error('page_description')

{{ $message }}

@enderror
@hasPermission('admin.aiPrompt.update')
@endhasPermission
{{ __('Blog Description Note') }}
@csrf
Note: If you use {title}, the blog title will be automatically retrieved and inserted into the main prompt.
@error('blog_description')

{{ $message }}

@enderror
@hasPermission('admin.aiPrompt.update')
@endhasPermission
@endsection @push('css') @endpush @push('scripts') @endpush