check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => ['required', 'min:3'], 'email' => ['required', 'email', Rule::unique((new User)->getTable())->ignore(auth()->id())], ]; } }