simple form change id

# Step 1: Open the form file (e.g., _form.html.erb) where the change needs to be made.

# Step 2: Locate the input field for which you want to change the ID.

# Step 3: Find the 'input_html' option within the input field definition.

# Step 4: Add the 'id' attribute to the 'input_html' option and assign the desired ID value.
# Example:
<%= f.input :example_field, input_html: { id: 'new_id_value' } %>

# Step 5: Save the changes to the form file.