@using Microsoft.AspNetCore.Mvc.Rendering @model PersonForm @{ var formAction = ViewData["FormAction"]?.ToString() ?? "Create"; var countries = ViewBag.Countries as SelectList ?? new SelectList(Array.Empty()); }