@inject IPokemonService PokemonService @if(formUse == "ADD") {

New Pokemon

#
Variation?
Pokemon Type @foreach (var pt in PokemonTypes) { }
Sleep Type
@foreach (var st in SleepTypes) { }
Specialty
@foreach (var sp in Specialities) { }
Base Image URL
Shiny Image URL
Flavor Text
@if (showErrors && !IsComplete) {
Please complete: @string.Join(", ", MissingFields())
}
@if (mostRecentForm) { }
} else if (formUse == "EDIT") {

Edit Pokemon

#
Variation?
Pokemon Type @foreach (var pt in PokemonTypes) { }
Sleep Type
@foreach (var st in SleepTypes) { }
Specialty
@foreach (var sp in Specialities) { }
Base Image URL
Shiny Image URL
Flavor Text
@if (showErrors && !IsComplete) {
Please complete: @string.Join(", ", MissingFields())
}
@if (mostRecentForm) { }
}