stealing @Bernard's example, i've expanded it to show a multi-line situation.
the [t] is a necessary option on the aligned block to keep the block
from being centered vertically, but unfortunately it also has the effect of
placing the equation number on the top line of that component.
\documentclass{article}
\usepackage{empheq}
\begin{document}
\begin{subequations}
\begin{empheq}[left=\empheqlbrace]{align}
x & = \begin{aligned}[t]
& y + z + \text{something to make this wider}\\
& + \text{more stuff to produce multiple lines}
\end{aligned}\\
a^2 & = b + c
\end{empheq}
\end{subequations}
\end{document}

one other comment ... bernard's answer uses "unicode" superscripts.
doesn't always work (and there aren't unicode superscripts for greek letters or really anything but digits), so it's not recommended to use those in math.
but otherwise, bernard's answer is solid.