| Path : /var/www/html/jewelry-pos/resources/views/app/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/jewelry-pos/resources/views/app/user-modal.blade.php |
<!-- Modal popup -->
<div class="modal fade" id="UserchangePass_modal" tabindex="-1" role="dialog" aria-hidden="true">
modal-dialog-centered
<div class="modal-dialog modal-lg " role="document">
<div class="modal-content">
<div class="modal-header bg-primary">
<h5 class="modal-title"><i class="fal fa-unlock"> {{ __('message.change password') }} </i></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fal fa-times text-light"></i></span>
</button>
</div>
<form action="{{ route('user.updatePassword', $user->id) }}" method="POST" class="frm-change-password">
@method('PUT')
{{ csrf_field() }}
<div class="modal-body">
<div class="form-group">
<label class="col-md-2 control-label">{{ __('message.password') }}</label>
<div class="col-md-12">
<input class="form-control" placeholder="{{ __('message.password') }}" type="password"
name="password" required="">
@error('password')
<span class="text-danger">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
</div>
<div class="modal-footer">
<button type="submit" id="saveChangePw" class="btn btn-primary waves-effect waves-themed"
onclick="this.form.submit();this.disabled = true;">
<i class="fal fa-save fa-lg"></i>
{{ __('message.save') }}
</button>
<button type="button" class="btn btn-danger waves-effect waves-themed"
data-dismiss="modal">{{ __('message.cancel') }}</button>
</div>
</form>
</div>
</div>
</div>
<!-- End Modal popup -->