The Rise of Contactless Payments:...
In recent years, contactless payments have surged in popularity, driven...
@if (admin_permission_by_name("admin.admins.role.permission.update"))
<div id="permission-edit" class="mfp-hide large">
<div class="modal-data">
<div class="modal-header px-0">
<h5 class="modal-title">{{ __("Edit Permission") }}</h5>
</div>
<div class="modal-form-data">
<form class="modal-form" method="POST" action="{{ setRoute('admin.admins.role.permission.update') }}" enctype="multipart/form-data">
@csrf
@method("PUT")
<input type="hidden" name="target" value="{{ old("target") }}">
<div class="row mb-10-none">
<div class="col-xl-12 col-lg-12 form-group mt-2">
@include('admin.components.form.input',[
'label' => __("Permission Name")."*",
'name' => "edit_name",
'value' => old("edit_name"),
])
</div>
<div class="col-xl-12 col-lg-12 form-group d-flex align-items-center justify-content-between mt-4">
<button type="button" class="btn btn--danger modal-close">{{ __("Cancel") }}</button>
<button type="submit" class="btn btn--base">{{ __("Update") }}</button>
</div>
</div>
</form>
</div>
</div>
</div>
@push("script")
<script>
openModalWhenError("permission-edit","#permission-edit");
$(".edit-modal-button").click(function(){
var oldData = JSON.parse($(this).parents("tr").attr("data-item"));
var editModal = $("#permission-edit");
editModal.find("form").first().find("input[name=target]").val(oldData.id);
editModal.find("input[name=edit_name]").val(oldData.name);
openModalBySelector("#permission-edit");
});
</script>
@endpush
@endif
Blog Section
Dive into our blog to explore the cutting-edge trends in digital payments and NFC technology. Stay updated on the innovations that are revolutionizing transactions, boosting security, and making payments quicker and more convenient. Learn how these advancements are shaping the future of financial interactions and driving the global transition towards a cashless world.
In recent years, contactless payments have surged in popularity, driven...
As digital transactions proliferate, ensuring robust payment security is more critical than ever. Two foundational...
Digital wallets have fundamentally transformed how we manage money, offering a streamlined, secure, and highly...