| 1 | <?php namespace JobApis\JobsToMail\Http\Requests; |
||
| 5 | class CreateUser extends FormRequest |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Determine if the user is authorized to make this request. |
||
| 9 | * |
||
| 10 | * @return bool |
||
| 11 | */ |
||
| 12 | public function authorize() |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Get custom messages for validator errors. |
||
| 19 | * |
||
| 20 | * @return array |
||
| 21 | */ |
||
| 22 | public function messages() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Get the validation rules that apply to the request. |
||
| 32 | * |
||
| 33 | * @return array |
||
| 34 | */ |
||
| 35 | public function rules() |
||
| 44 | } |
||
| 45 |