User has coins. Their number in the field should not exceed their number in the database.
coin.cshtml:
@Html.EditorFor(model => model.coin) User coins are specified in the database (I can get the coin value of the user in the CoinController controller)
public class Coin { [Key] public int id { get; set; } public double coins { get; set; }