@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Create New Chat Prompt') }}

@csrf
{{ __('Title') }}
@error('title')

{{ $errors->first('title') }}

@enderror
{{ __('Prompt Group') }}
{{ __('or Create New Group') }} ({{ __('Optional') }})
@error('custom')

{{ $errors->first('custom') }}

@enderror
{{ __('Prompt') }}
@error('prompt')

{{ $errors->first('prompt') }}

@enderror
@endsection