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