In my application ,I have to present the user with an address input form.I have an Address model as given below.Do I need to create an html page from scratch to capture the user input,Or can I generate a form similar to the crud page in admin area?Which is the correct way to do this in playframework?
public class Address extends Model {
@Required
String addressLine1;
String addressLine2;
String city;
String state;
String pincode;
String phoneNumber;
String country;
...
}