{{ html()->label('First Name')->class('form-label') }} {{ html()->text('first_name')->class('form-control')->placeholder('First Name')->required() }}
{{ html()->label('Last Name')->class('form-label') }} {{ html()->text('last_name')->class('form-control')->placeholder('Last Name')->required() }}
{{ html()->label('Email')->class('form-label') }} {{ html()->email('email')->class('form-control')->placeholder('Email Address')->required() }} {{ html()->div('Please enter email')->class('invalid-feedback') }}
{{ html()->label('Phone Number')->class('form-label') }} {{ html()->text('phone')->class('form-control')->placeholder('Phone Number') }}
{{ html()->label('Contact Number')->class('form-label') }} {{ html()->text('contact')->class('form-control')->placeholder('Contact Number') }}
{{ html()->label('Address')->class('form-label') }} {{ html()->text('address')->class('form-control')->placeholder('Enter Full Address') }}
Company Details
{{ html()->label('Name')->class('form-label') }} {{ html()->text('company_name')->class('form-control')->placeholder('Company Name')->required() }}
{{ html()->label('Address')->class('form-label') }} {{ html()->text('company_address')->class('form-control')->placeholder('Company Address')->required() }}
{{ html()->label('Phone')->class('form-label') }} {{ html()->text('company_phone')->class('form-control')->placeholder('Company Phone')->required() }}
{{ html()->label('Contact')->class('form-label') }} {{ html()->text('company_contact')->class('form-control')->placeholder('Company Contact')->required() }}
{{ html()->label('PAN')->class('form-label') }} {{ html()->text('company_pan')->class('form-control')->placeholder('Company PAN')->required() }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->placeholder('Enter Remarks') }}
@push('js') @endpush