{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Title')->required() }} {{ html()->div('Please Enter Title')->class('invalid-feedback') }}
{{--
{{ html()->label('Date')->class('form-label') }} {{ html()->date('date')->class('form-control flatpickr-date')->placeholder('Date')->required() }} {{ html()->div('Please Enter Date')->class('invalid-feedback') }}
{{ html()->label('Release Date')->class('form-label') }} {{ html()->date('release_date')->class('form-control flatpickr-date')->placeholder('Release Date')->required() }} {{ html()->div('Please Enter Release Date')->class('invalid-feedback') }}
--}}
{{ html()->label('Product')->class('form-label') }} {{ html()->select('product_id', $products)->class('form-control select2')->placeholder('Select Product')->required() }} {{ html()->div('Please Select Product')->class('invalid-feedback') }}
{{ html()->label('Category')->class('form-label') }} {{ html()->select('category_id', $categories)->class('form-control select2')->placeholder('Select Category') }} {{ html()->div('Please Select Category')->class('invalid-feedback') }}
{{--
{{ html()->label('Upload Document')->class('form-label') }} {{ html()->file('creative')->class('form-control') }}
--}}
{{ html()->label('Caption')->class('form-label') }} {{ html()->textarea('caption')->class('form-control ckeditor-classic') }}
Publish
{{ html()->label('Status')->class('form-label') }} {{ html()->select('status', $status)->class('form-control select21') }}
Document
{{ html()->label('Image')->class('form-label visually-hidden') }} {{ html()->file('creative')->class('form-control dropify')->attributes([ 'data-default-file' => $editable ? asset('storage/' . $content?->creativedocument_path) : null, 'data-height' => 200, ]) }}
@push('js') @endpush