Pass control prop to child component in react hook form

I’m trying to pass the control prop to my custom component that comes from react-hook-form but it tells that the control is undefined

I did the same thing written in document. I used FormProvider like this:

<FormProvider {...methods}>
        <form
          style={{
            height: "auto",
            width: "90%",
            padding: "2em",
            paddingTop: "0",
            textAlign: "center",
            backgroundColor: "white",
            borderRadius: "10px",
          }}
          onSubmit={methods.handleSubmit((data) => console.log(data))}
        >
          <IconButton
            color="error"
            onClick={() => setRecordControl({ stat: "" })}
          >
            <Cancel fontSize="large" />
          </IconButton>
          <h3 style={{ marginBottom: "10px", textAlign: "center" }}>
            saving records
          </h3>
          {filtered.ListColumnInfo.map(
            (detail) =>
              detail.VisibleColumn && (
                <div key={uuidV4()}>
                  <CustomTextBoxComponent
                    filtered={detail}
                  />
                </div>
              )
          )}

          <Button
            variant="contained"
            fullWidth
            color="success"
            sx={{ mt: "1em" }}
            type="submit"
          >
            save
          </Button>
        </form>
      </FormProvider>

and I tried to retrieve the control inside of my CustomTextBoxComponent like this:

const CustomTextBoxComponent = ({ filtered }) => {
  const { control } = useFormContext();
  return (
    <Controller
      name="input"
      render={({ field }) => (
        <TextField
          fullWidth
          placeholder={
            filtered.ElsRecord.PersianName !== ""
              ? filtered.ElsRecord.PersianName
              : filtered.ElsRecord.Name
          }
    
          sx={{ marginBlock: "1em" }}
          {...control}
          {...field}
        />
      )}
      defaultValue=""
    />
  );
};

it didn’t work. always says the method is null