AB
this.checkOutForm = this.fb.group({
name: [this.checkout.form_data.name , [ Validators.required ]],
surname: [this.checkout.form_data.surname, [ Validators.required]],
email: [this.checkout.form_data.email, [ Validators.required, Validators.email]],
telephone: [this.checkout.form_data.telephone, [ Validators.required, ]],
address: [this.checkout.form_data.address, [ Validators.required, ]],
postalCode: [this.checkout.form_data.postalCode, [ Validators.required, ]],
region: [this.checkout.form_data.region, [ Validators.required, ]],
city: [this.checkout.form_data.city, [ Validators.required, ]],
country: [this.checkout.form_data.country, [ Validators.required, ]],
});

