diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index af54a23592bdc96286a3d037f6dd9c6f341a7af4..ec91fb1e5d92e5af27d075187c3878f05346e026 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -8,6 +8,7 @@ import { Structure } from '../../models/structure.model';
 import { StructureWithOwners } from '../../models/structureWithOwners.model';
 import { User } from '../../models/user.model';
 import { ProfileService } from '../../profile/services/profile.service';
+import { NotificationService } from '../../services/notification.service';
 import { PersonalOfferService } from '../../services/personal-offer.service';
 import { StructureService } from '../../services/structure.service';
 import { MustMatch } from '../../shared/validator/form';
@@ -75,7 +76,8 @@ export class FormViewComponent implements OnInit {
     private route: ActivatedRoute,
     private profileService: ProfileService,
     private structureService: StructureService,
-    private personalOfferService: PersonalOfferService
+    private personalOfferService: PersonalOfferService,
+    private notificationService: NotificationService
   ) {}
 
   async ngOnInit(): Promise<void> {
@@ -342,6 +344,7 @@ export class FormViewComponent implements OnInit {
     let editStructure = this.editForm.value;
     editStructure.hours = this.hoursForm.value;
     this.structureService.editStructure(editStructure).subscribe(() => {
+      this.notificationService.showSuccess('Vos modifications ont bien été prises en compte.', '');
       history.back();
     });
   }
diff --git a/src/app/form/form-view/structure-form/structure-form.component.ts b/src/app/form/form-view/structure-form/structure-form.component.ts
index 2bb467f9199bbb39a3ed9260c63467f6a51a7658..a1e136391201409481047d73f322428fc0c2f4cd 100644
--- a/src/app/form/form-view/structure-form/structure-form.component.ts
+++ b/src/app/form/form-view/structure-form/structure-form.component.ts
@@ -228,7 +228,6 @@ export class StructureFormComponent implements OnChanges, OnInit {
       this.pagesValidation[structureFormStep.structureConsent] = {
         valid: !this.isEditMode ? this.userAcceptSavedDate : true,
       };
-
       this.updatePageValid();
     }
   }
diff --git a/src/styles.scss b/src/styles.scss
index 7676b6406493529481d3286fa2fc316838333a07..76c2be28f751e10f3a96e7b2e2a575803fd6b684 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -85,7 +85,7 @@ a {
     &::after {
       content: url('/assets/ico/toast-success.svg') !important;
       position: absolute !important;
-      top: 14px !important;
+      top: 5px !important;
       left: 5px !important;
     }
   }
@@ -97,7 +97,7 @@ a {
     &::after {
       content: url('assets/ico/toast-error.svg') !important;
       position: absolute !important;
-      top: 14px !important;
+      top: 5px !important;
       left: 5px !important;
     }
   }