'How to set dynamic value on react hook form?

I am trying to take the email value dynamically from user on react hook form. but after hitting the submit button, all the field value available but email value undefined. I am adding the email field code here. Thanks in advance. <input className='mb-3' placeholder={user.email} value={${user?.email}}type="email" {...register("email")} readOnly disabled />



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source