Update Module Users

- Fix Form Validation for Check Password, if null password not changed
- Update Validation NIK on Update user data
- Fix Role Not Assign if value is id not role name
- Change User Migration, change password field to nullable
This commit is contained in:
Daeng Deni Mardaeni
2024-08-28 09:09:29 +07:00
parent 18b8ed5344
commit 47f248c7b3
3 changed files with 12 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ return new class extends Migration
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('password')->nullable();
$table->rememberToken();
$table->timestamps();
$table->softDeletes();