Client Information
{{ html()->label('Name')->class('form-label')->for('name') }}
{{ html()->span('*')->class('text-danger') }}
{{ html()->text('name')->class('form-control')->placeholder('Client Name')->required() }}
{{ html()->label('Contact')->class('form-label')->for('contact') }}
{{ html()->span('*')->class('text-danger') }}
{{ html()->text('contact')->class('form-control')->placeholder('Contact Number')->required() }}
Manager Information
{{ html()->label('Name')->class('form-label')->for('manager_name') }}
{{ html()->text('manager_name')->class('form-control')->placeholder('Manager Name') }}
{{ html()->label('Contact')->class('form-label')->for('manager_contact') }}
{{ html()->text('manager_contact')->class('form-control')->placeholder('Manager Contact') }}
Point of Contact Information
{{ html()->label('Name')->class('form-label')->for('poc_name') }}
{{ html()->text('poc_name')->class('form-control')->placeholder('Point of Contact Name') }}
{{ html()->label('Number')->class('form-label')->for('poc_contact') }}
{{ html()->text('poc_contact')->class('form-control')->placeholder('Point of Contact Number') }}
Additional Information
{{ html()->label('Description')->class('form-label')->for('description') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}