I use an angular material component to make a form, so I use mat-form-field.
I would like to have the label on the left and a text input field on the right. How can I do this? In the example on the official doc it is not possible to do this.
html
<div class="container">
<mat-form-field appearance="legacy">
<mat-label>Nom</mat-label>
<input matInput formControl="nom">
</mat-form-field>
</div>
expected result:
