1 | <?php namespace Modules\User\Http\Requests; |
||
5 | class ResetCompleteRequest extends FormRequest |
||
6 | { |
||
7 | /** |
||
8 | * Get the validation rules that apply to the request. |
||
9 | * |
||
10 | * @return array |
||
11 | */ |
||
12 | public function rules() |
||
19 | |||
20 | /** |
||
21 | * Determine if the user is authorized to make this request. |
||
22 | * |
||
23 | * @return bool |
||
24 | */ |
||
25 | public function authorize() |
||
29 | |||
30 | public function messages() |
||
34 | } |
||
35 |