{{ html()->label('Name')->class('form-label') }} {{ html()->span('*')->class('text-danger') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Name')->required() }} {{ html()->div('Name is required')->class('invalid-feedback') }}
{{ html()->label('Location')->class('form-label') }} {{ html()->text('designation')->class('form-control')->placeholder('Enter Location') }}
{{ html()->label('Company')->class('form-label') }} {{ html()->text('company')->class('form-control')->placeholder('Enter Company') }}
{{ html()->label('Branch')->class('form-label')->for('branch_id') }} {{ html()->select('branch_id', $branchOptions)->class('form-select choices-select')->placeholder('Select') }}
{{ html()->label('Comment')->class('form-label')->for('description') }} {{ html()->span('*')->class('text-danger') }} {{ html()->textarea('description')->class('form-control')->rows(10) }}
Publish
{{ html()->select('status', config('constants.page_status_options'))->class('form-select choices-select ') }}