Index: ReserveNGo-frontend/src/components/Project/Admin/AddRestaurant.vue
===================================================================
--- ReserveNGo-frontend/src/components/Project/Admin/AddRestaurant.vue	(revision b64746bfd6dc26786845ed4fb4ac6b08a4976d31)
+++ ReserveNGo-frontend/src/components/Project/Admin/AddRestaurant.vue	(revision 40dedfbd3ee24c4efa2293c334a72d359cbf2b4d)
@@ -28,6 +28,6 @@
         })
       }).then((response) => response.json())
-        .then(json => {this.restaurantStore.newRestaurant(json);
-                router.push('/')});
+        .then(json => {this.restaurantStore.newRestaurant(json)})
+        .then(()=>this.router.push('/'))
 
     }
Index: ReserveNGo-frontend/src/components/Project/Restaurant/Locale_.vue
===================================================================
--- ReserveNGo-frontend/src/components/Project/Restaurant/Locale_.vue	(revision b64746bfd6dc26786845ed4fb4ac6b08a4976d31)
+++ ReserveNGo-frontend/src/components/Project/Restaurant/Locale_.vue	(revision 40dedfbd3ee24c4efa2293c334a72d359cbf2b4d)
@@ -4,4 +4,5 @@
 
 import { userStore } from '@/PiniaStores/UserStore.js'
+import { useRouter } from 'vue-router'
 
 export default {
@@ -25,4 +26,5 @@
       local_id: this.$route.params['id'],
       userStore: userStore(),
+      router: useRouter(),
     }
   },
@@ -41,4 +43,13 @@
         },
       }).catch((error) => console.log(error))
+    },
+    removeRestaurant(){
+      fetch(`http://localhost:8080/api/admin/delete/${this.locale.id}`, {
+        method: 'DELETE',
+        headers: {
+          Authorization: this.userStore.getToken,
+        },
+      }).catch((error) => console.log(error))
+        .then(() => this.router.push('/'))
     },
   }
@@ -130,4 +141,12 @@
             Back to Restaurants
           </v-btn>
+          <v-btn v-if="userStore.data.role === 'ROLE_ADMIN'"
+                 variant="outlined"
+                 class="mx-2 mt-4"
+                 color="danger"
+                 @click="removeRestaurant"
+          >
+            Delete Restaurant
+          </v-btn>
         </v-card>
       </v-col>
