{{--

Personal Details

--}}

Personal Details


{{ html()->label('First name')->class('form-label') }} {{ html()->text('first_name')->class('form-control')->placeholder('Enter First Name')->required() }}
{{ html()->label('Middle name')->class('form-label') }} {{ html()->text('middle_name')->class('form-control')->placeholder('Enter Middle Name') }}
{{ html()->label('Last name')->class('form-label') }} {{ html()->text('last_name')->class('form-control')->placeholder('Enter Last Name')->required() }} {{ html()->div('Please enter last name')->class('invalid-feedback') }}
{{ html()->label('Gender')->class('form-label') }} {{ html()->select('genders_id', [1 => 'male', 2 => 'female'])->class('form-select')->placeholder('Select Gender') }}
{{ html()->label('Date of Birth')->class('form-label') }} {{ html()->date('dob')->class('form-control')->placeholder('Choose Date of Birth')->required() }} {{ html()->div('Please choose dob')->class('invalid-feedback') }}
{{ html()->label('Nationality')->class('form-label') }} {{ html()->select('nationalities_id', [1 => 'Nepal', 2 => 'Other'])->class('form-control')->placeholder('Select Nationality') }}
{{ html()->label('Email')->class('form-label') }} {{ html()->email('email')->class('form-control')->placeholder('Enter Email')->required() }} {{ html()->div('Please enter email')->class('invalid-feedback') }}
{{ html()->label('Phone Number')->class('form-label') }} {{ html()->text('contact')->class('form-control')->placeholder('Enter Phone Number') }}
{{ html()->label('Upload Profile Pic')->class('form-label') }} {{ html()->file('profile_pic')->class('form-control') }}

Address Details


{{--
{{ html()->label('Municipality')->class('form-label') }} {{ html()->select('municipality_id', [])->class('form-select')->placeholder('Select Municipality') }}
{{ html()->label('Ward')->class('form-label') }} {{ html()->text('ward')->class('form-control')->placeholder('Enter Ward no') }}
--}}
{{ html()->label('Permanent Address')->class('form-label') }} {{ html()->text('permanent_address')->class('form-control')->placeholder('Enter Permanent Address') }}
{{ html()->label('Temporary Address')->class('form-label') }} {{ html()->text('temporary_address')->class('form-control')->placeholder('Enter Temporary Address') }}

Organization Details


{{ html()->label('Department')->class('form-label') }} {{ html()->select('department_id', ['Nepal'])->class('form-select')->placeholder('Select Department') }}
{{ html()->label('Designation')->class('form-label') }} {{ html()->select('designation_id', ['Nepal'])->class('form-select')->placeholder('Select Designation') }}
{{--
{{ html()->label('Join Date')->class('form-label') }} {{ html()->date('join_date')->class('form-control')->placeholder('Choose Join Date') }}
--}}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->placeholder('Enter Remarks') }}