StocksNew/Modules/Admin/resources/views/provinces/partials/action.blade.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

17 lines
586 B
PHP

<div class="row gy-3">
<div class="col-lg-4 col-md-6">
{{ html()->label('Country')->class('form-label') }}
{{ html()->select('country_id', $countryLists)->class('form-select select2')->placeholder('Country') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Name')->class('form-label') }}
{{ html()->text('name')->class('form-control')->placeholder('Province Name') }}
</div>
<div class="text-end">
{{ html()->button($editable ? 'Update' : 'Add Province', 'submit')->class('btn btn-success') }}
</div>
</div>