master admin module

This commit is contained in:
2024-04-11 17:50:16 +05:45
parent 7e345ef4e3
commit c378522598
9 changed files with 446 additions and 434 deletions

View File

@ -27,7 +27,7 @@
<div class="col-md-4">
{{ html()->label('Gender')->class('form-label') }}
{{ html()->select('genders_id', [1 => 'male', 2 => 'female'])->class('form-select')->placeholder('Select Gender') }}
{{ html()->select('genders_id', $genderList)->class('form-select')->placeholder('Select Gender') }}
</div>
<div class="col-md-4">
@ -39,7 +39,7 @@
<div class="col-md-4">
{{ html()->label('Nationality')->class('form-label') }}
{{ html()->select('nationalities_id', [1 => 'Nepal', 2 => 'Other'])->class('form-control')->placeholder('Select Nationality') }}
{{ html()->select('nationality_id', $nationalityList)->class('form-select')->placeholder('Select Nationality') }}
</div>
<div class="col-md-4">
@ -91,12 +91,12 @@
<hr>
<div class="col-md-4">
{{ html()->label('Department')->class('form-label') }}
{{ html()->select('department_id', ['Nepal'])->class('form-select')->placeholder('Select Department') }}
{{ html()->select('department_id', $departmentList)->class('form-select')->placeholder('Select Department') }}
</div>
<div class="col-md-4">
{{ html()->label('Designation')->class('form-label') }}
{{ html()->select('designation_id', ['Nepal'])->class('form-select')->placeholder('Select Designation') }}
{{ html()->select('designation_id', $designationList)->class('form-select')->placeholder('Select Designation') }}
</div>
{{-- <div class="col-md-4">
@ -115,7 +115,6 @@
</div>
<!-- end card -->
<div class="mb-4 text-end">
<button type="submit" class="btn btn-success w-sm">Save</button>
</div>