TIF_E41201027/app/Http/Requests/ChangePasswordRequest.php

39 lines
733 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ChangePasswordRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'password' => 'min:8|confirmed'
];
}
public function messages()
{
return [
'password.min' => 'Panjang password harus minimal 8 karakter',
'password.confirmed' => 'Password baru tidak sama'
];
}
}