skip to Main Content

Strong password validation in Laravel 10

It is not working in Laravel 10, How can I develop it in a proper way? 'password' => [ 'required|confirmed', Password::min(8) ->letters() ->mixedCase() ->numbers() ->symbols() ->uncompromised() ], Trying strong password validation in Laravel 10 but it does not work. Hope…

VIEW QUESTION

Laravel – Route not defined in a href

Route [paslon.create] not defined. <a href="{{route('daftar.create')}}" class="btn btn-primary btn-sm mb-3">tambah1</a> controller public function create() { return view('daftar.create'); } web.php Route::get('/create', function () { return view('/daftar/create'); }); my solution is changing in <a href="/create" class="btn btn-primary btn-sm mb-3">tambah1</a> and in web…

VIEW QUESTION

Laravel – Unique validation ignore on update not working

my email unique validation is not working. From this form, I am sending a user <form id="edit-form" class="mt-4" action="{{ route('user.update', 1) }}" method="post"> @csrf @method('put') </form> It goes here to my web.php Route::prefix('/user')->group(function () { Route::put('/update/{user}', [AppHttpControllersUserController::class, 'update'])->name('user.update'); }); Then…

VIEW QUESTION
Back To Top
Search