{{ html()->label('Title')->class('form-label')->for('title') }} {{ html()->span('*')->class('text-danger') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Branch Title')->required(true) }}
{{ html()->label('Description (Short)')->class('form-label')->for('short_description') }} {{ html()->textarea('short_description')->class('form-control')->placeholder('Enter Branch Description (Short)')->rows(5) }}
{{ html()->label('Description')->class('form-label')->for('description') }} {{ html()->span('*')->class('text-danger') }} {{ html()->textarea('description')->class('form-control ckeditor-classic')->placeholder('Enter Branch Description')->required() }}
Other Information
{{ html()->label('Location')->class('form-label')->for('location') }} {{ html()->text('location')->class('form-control mb-3')->placeholder('Office location') }}
{{ html()->label('Phone')->class('form-label')->for('phone') }} {{ html()->text('phone')->class('form-control mb-3')->placeholder('Enter Phone') }}
{{ html()->label('Mobile')->class('form-label')->for('mobile') }} {{ html()->text('mobile')->class('form-control mb-3')->placeholder('Enter Mobile') }}
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 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') }}
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_text') }} {{ html()->text('button_text')->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') }}