{{ html()->label('Title')->class('form-label')->for('title') }} {{ html()->span('*')->class('text-danger') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Service Title')->required(true) }}
{{ html()->label('Description (Short)')->class('form-label')->for('short_description') }} {{ html()->textarea('short_description')->class('form-control')->placeholder('Enter Description (Short)')->rows(5) }}
{{ html()->label('Description')->class('form-label')->for('description') }} {{ html()->textarea('description')->class('form-control ckeditor-classic')->placeholder('Enter Description') }}
{{-- --}}
Meta
{{ html()->label('Meta Title')->class('form-label')->for('meta_title') }} {{ html()->text('meta_title')->class('form-control mb-3')->placeholder('Meta Title') }}
{{ html()->label('Meta Keywords')->class('form-label')->for('meta_keywords') }} {{ html()->textarea('meta_keywords')->class('form-control mb-3')->placeholder('Meta Keywords') }}
{{ html()->label('Meta Description')->class('form-label')->for('meta_description') }} {{ html()->textarea('meta_description')->class('form-control mb-3')->placeholder('Meta wire:Description')->rows(3) }}
Published
{{ html()->label('Status')->class('form-label visually-hidden')->for('status') }} {{ html()->select('status', config('constants.page_status_options'))->class('form-select choices-select') }}
Page Attributes
{{ html()->label('Parent Service')->class('form-label')->for('parent_id') }} {{ html()->select('parent_id', $serviceOptions ?? [])->value($service->parent_id ?? old('parent_id'))->class('form-select choices-select')->placeholder('Select') }}
Button
{{ html()->label('Text')->class('form-label')->for('button_text') }} {{ html()->text('button_text')->class('form-control') }}
{{ html()->label('Link')->class('form-label')->for('button_url') }} {{ html()->text('button_url')->class('form-control')->placeholder('Button Link') }}
{{ html()->label('Target')->class('form-label')->for('button_target') }} {{ html()->select('button_target', config('constants.redirect_options'))->class('form-select choices-select') }}