StocksNew/Modules/Admin/resources/views/provinces/partials/action.blade.php

17 lines
586 B
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<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>