“Wymagaj hasła potwierdź laravel” Kod odpowiedzi

Potwierdź sprawdzanie poprawności hasła Laravel

'password' => 'required|confirmed',

reference : https://laravel.com/docs/4.2/validation#rule-confirmed

The field under validation must have a matching field of foo_confirmation. 
For example, if the field under validation is password, a matching
password_confirmation field must be present in the input.
Lokesh003

Potwierdź sprawdzanie poprawności hasła w Laravel

$this->validate($request, [
    'name' => 'required|min:3|max:50',
    'email' => 'email',
    'vat_number' => 'max:13',
    'password' => 'required|confirmed|min:6',
]);
Super Starling

Wymagaj hasła potwierdź laravel

Route::get(...)->middleware('password.confirm');
NachooCh

Odpowiedzi podobne do “Wymagaj hasła potwierdź laravel”

Pytania podobne do “Wymagaj hasła potwierdź laravel”

Więcej pokrewnych odpowiedzi na “Wymagaj hasła potwierdź laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu