chess/resources/views/content/others/changePass.blade.php
Ramadhon Ikhsan Prasetya 603e31b0f4 init
2024-08-29 10:56:32 +07:00

22 lines
1.2 KiB
PHP

<x-other.modal id="mChangePass" title="Change Password" subTitle="Change Password {{ Auth::user()->full_name }}" info="" separator="false" size="md">
<x-slot name="action">
<button onclick="storeChangePass()" type="button" class="btn btn-success font-weight-bold mr-2" id="znBtnLoader">Simpan</button>
</x-slot>
<x-slot name="content">
<form id="formChangePass">
<div class="separator separator-dashed separator-border-1 mt-5 mb-5"></div>
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label>New Password </label>
<input autocomplete="off" type="password" value="" name="change_pass" id="change_pass" class="form-control form-control-solid" placeholder="Isikan New Password"/>
</div>
</div>
</div>
</div>
</div>
</form>
</x-slot>
</x-other.modal>