first change

This commit is contained in:
2025-07-27 17:40:56 +05:45
commit f8b9a6725b
3152 changed files with 229528 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<div class="row gy-3">
<div class="col-lg-4 col-md-6">
{{ html()->label('Name')->class('form-label') }}
{{ html()->text('name')->class('form-control')->placeholder('Country Name') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Code')->class('form-label') }}
{{ html()->text('code')->class('form-control')->placeholder('Country code') }}
</div>
<x-form-buttons :editable="$editable" :href="route('country.index')" />
</div>

View File

@@ -0,0 +1,13 @@
<div class="modal fade" id="viewModal" tabindex="-1" aria-labelledby="viewModalLabel" aria-modal="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalgridLabel">View Country</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
@include('admin::countries.show')
</div>
</div>
</div>
</div>