<?phpnamespaceApp\Http\Requests;useIlluminate\Foundation\Http\FormRequest;classUserUpdateextendsBaseRequest{/** * Determine if the user is authorized to make this request. * * @return bool */publicfunctionauthorize(){returntrue;}/** * Get the validation rules that apply to the request. * * @return array */publicfunctionrules(){return['account_properties'=>'required|in:1,2','company_name'=>'required|max:50','first_name'=>'required|max:50','last_name'=>'required|max:50',];}}