construct.net/en/make-games/manuals/construct-3/project-primitives/objects/containers
Placing objects in a container has the following effects:
If one object in a container is created, every other object in its container is also automatically created.
If one object in a container is destroyed, every other associated object in its container is also destroyed.
If a condition picks one object in a container, every other associated object in its container is also picked.
For each instance of sprite 1 you create, a sprite 2 will also be created and associated with a sprite 1.
For each instance of sprite 2 you create, a sprite 1 will also be created and associated with a sprite 2.
Positioning should be done with events upon creation. In the same event as creation, the relevant instances of sprite 1 and 2 are both already picked.
Edit: Missed the part about placing in the layout editor, so see the more accurate answer below.