I am supposing that the education information will always be realted to the user. So to create the route you should do as:
In routes file:
resources :users do
resources :education_informations
end
So what this will do is create the route as I specified in the comments. Like this will be routes:
user_education_informations GET /users/:user_id/education_informations(.:format) education_informations#index
POST /users/:user_id/education_informations(.:format) education_informations#create
new_user_education_information GET /users/:user_id/education_informations/new(.:format) education_informations#new
edit_user_education_information GET /users/:user_id/education_informations/:id/edit(.:format) education_informations#edit
user_education_information GET /users/:user_id/education_informations/:id(.:format) education_informations#show
PATCH /users/:user_id/education_informations/:id(.:format) education_informations#update
PUT /users/:user_id/education_informations/:id(.:format) education_informations#update
DELETE /users/:user_id/education_informations/:id(.:format) education_informations#destroy
users GET /users(.:format) users#index
POST /users(.:format) users#create
new_user GET /users/new(.:format) users#new
edit_user GET /users/:id/edit(.:format) users#edit
user GET /users/:id(.:format) users#show
PATCH /users/:id(.:format) users#update
PUT /users/:id(.:format) users#update
DELETE /users/:id(.:format) users#destroy
So for the new eudcation information form you need to give this path new_user_education_information_path(user)
where user
will be the clicked user.
You can get more information here: http://guides.rubyonrails.org/routing.html#nested-resources
Hope this helps.