diff --git a/app/Http/Controllers/CategoryController.php b/app/Http/Controllers/CategoryController.php
index 79f2bca..ead0d6a 100644
--- a/app/Http/Controllers/CategoryController.php
+++ b/app/Http/Controllers/CategoryController.php
@@ -41,20 +41,6 @@ public function show(Category $category)
]);
}
- /**
- * Show the form for editing the specified resource.
- *
- * @return \Illuminate\Http\Response
- */
- public function edit(Category $category)
- {
- $this->authorize('do-everything');
-
- return view('categories.edit', [
- 'category' => $category,
- ]);
- }
-
/**
* Update the specified resource in storage.
*
diff --git a/app/Http/Controllers/GroupController.php b/app/Http/Controllers/GroupController.php
index a6d3240..be5fdcb 100644
--- a/app/Http/Controllers/GroupController.php
+++ b/app/Http/Controllers/GroupController.php
@@ -41,20 +41,6 @@ public function show(Group $group)
]);
}
- /**
- * Show the form for editing the specified resource.
- *
- * @return \Illuminate\Http\Response
- */
- public function edit(Group $group)
- {
- $this->authorize('do-everything');
-
- return view('groups.edit', [
- 'group' => $group,
- ]);
- }
-
/**
* Update the specified resource in storage.
*
diff --git a/resources/views/categories/edit.blade.php b/resources/views/categories/edit.blade.php
deleted file mode 100644
index 39b44cc..0000000
--- a/resources/views/categories/edit.blade.php
+++ /dev/null
@@ -1,52 +0,0 @@
-@extends('layouts.defaultCreate')
-@section('title', __('categories.edit', ['name' => $category->name]))
-@section('form_action', route('categories.update', $category) )
-@section('submit_button',__('categories.update'))
-@section('profile',__('categories.profile'))
-
-@section('form_method')
- @method('patch')
-
-@endsection
-
-@section('specific_fields')
-