You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
5.2 KiB
103 lines
5.2 KiB
@extends('layouts.main') |
|
@section('title', 'Update Data User') |
|
@section('content') |
|
@include('layouts.components.alert-prompt') |
|
|
|
<div class="card shadow mb-4"> |
|
<div class="card-header py-3"> |
|
<div class="row"> |
|
<div class="col-6"> |
|
<h5 class="m-0 font-weight-bold text-primary mt-2">Edit User</h5> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="card-body"> |
|
<form action="{{ route('dashboard.user.update', [$user->id]) }}" method="POST" enctype="multipart/form-data" |
|
id="editForm"> |
|
@csrf |
|
@method('PUT') |
|
<div class="form-group"> |
|
<label for="username" class="col-form-label">Username:</label> |
|
<input class="form-control" name="username" type="text" id="username" value="{{ $user->username }}" |
|
placeholder="Masukan Username user" required> |
|
|
|
<label for="fullname" class="col-form-label">Nama Lengkap:</label> |
|
<input class="form-control" name="fullname" type="text" id="fullname" value="{{ $user->fullname }}" |
|
placeholder="Masukan Nama Lengkap user" pattern="[^0-9]+" |
|
oninput="this.value=this.value.replace(/[0-9]/g,'');" required> |
|
|
|
<label for="email" class="col-form-label">Email:</label> |
|
<input class="form-control" name="email" type="email" id="email" value="{{ $user->email }}" |
|
placeholder="Masukan email user" required> |
|
|
|
<label for="divisi" class="col-form-label">Divisi:</label> |
|
<input class="form-control" name="divisi" type="text" id="divisi" value="{{ $user->divisi }}" |
|
placeholder="Masukan Divisi user" pattern="[^0-9]+" |
|
oninput="this.value=this.value.replace(/[0-9]/g,'');" required> |
|
|
|
<label for="role_id" class="col-form-label">Hak Akses:</label> |
|
<select class="form-control" name="role_id" type="text" id="role_id"> |
|
<option disabled selected>Pilih Hak Akses</option> |
|
@foreach ($role as $data) |
|
<option value="{{ $data->id }}" |
|
@if ($data->id == $user->role_id) selected |
|
@else @endif> |
|
{{ $data->name }}</option> |
|
@endforeach |
|
</select> |
|
|
|
<label for="warehouse_id" class="col-form-label">Ditugaskan digudnag:</label> |
|
<select class="form-control" name="warehouse_id" type="text" id="warehouse_id"> |
|
<option disabled selected>Pilih DItugaskan</option> |
|
@foreach ($warehouse as $data) |
|
<option value="{{ $data->id }}" |
|
@if ($data->id == $user->warehouse_id) selected |
|
@else @endif> |
|
{{ $data->name }}</option> |
|
@endforeach |
|
</select> |
|
|
|
<div class="form-group"> |
|
<label for="password" class="col-form-label">Password: <span class="text-danger">*</span></label> |
|
<div class="input-group"> |
|
<input class="form-control" name="password" type="password" id="password" |
|
value="{{ old('password') }}" placeholder="Masukkan password user" minlength="8" |
|
pattern="^(?=.*[A-Za-z])(?=.*\d).*$" required |
|
title="Minimal 8 karakter dengan kombinasi huruf dan angka"> |
|
<div class="input-group-append"> |
|
<button class="btn btn-outline-secondary" type="button" id="showPasswordButton"> |
|
Tampilkan |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="modal-footer d-flex justify-content-center"> |
|
<a href="{{ route('dashboard.user.index') }}" class="btn btn-secondary">Kembali</a> |
|
<button type="submit" class="btn btn-primary" id="submitButton">Simpan</button> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
|
|
<script> |
|
const passwordInput = document.getElementById("password"); |
|
const showPasswordButton = document.getElementById("showPasswordButton"); |
|
|
|
showPasswordButton.addEventListener("click", function() { |
|
if (passwordInput.type === "password") { |
|
passwordInput.type = "text"; |
|
showPasswordButton.textContent = "Sembunyikan"; |
|
} else { |
|
passwordInput.type = "password"; |
|
showPasswordButton.textContent = "Tampilkan"; |
|
} |
|
}); |
|
</script> |
|
|
|
<script> |
|
document.getElementById('editForm').addEventListener('submit', function() { |
|
document.getElementById('submitButton').setAttribute('disabled', 'true'); |
|
}); |
|
</script> |
|
@endsection
|
|
|