hi I'm doing a form in the dual I have different select tags that have values of cities to which I want to place the first value of options so that when the user chooses the first value of the options label is seen as the first value, the problem is that when I integrate angular the select tag is shown to me in white and I want it to show me the first option.
here the code of my select
<select [(ngModel)]="ciudad" [ngModelOptions]="{standalone: true}" class="inputforShop" name="ciudad" required >
<option class="placeholder" value="Quito">Quito</option>
<option class="placeholder" value="Guayaquil">Guayaquil</option>
<option class="placeholder" value="Manta">Manta</option>
<option class="placeholder" value="Portoviejo">Portoviejo</option>
<option class="placeholder" value="Cuenca">Cuenca</option>
<option class="placeholder" value="Machala">Machala</option>
<option class="placeholder" value="Ibarra">Ibarra</option>
<option class="placeholder" value="Ambato">Ambato</option>
</select>
How can I show the first option value in my select tag?