I have custom configuration for User model:
rails_admin do
list do
field :name
field :email
field :company
end
edit do
field :first_name
field :last_name
field :email
field :password
field :company
end
end
And is there a way to hide company field (which is has_many relation) when using nested form?