Update Authentication Page

This commit is contained in:
Daeng Deni Mardaeni
2024-08-09 15:01:44 +07:00
parent ea01665131
commit d7eeaf65ff
2 changed files with 0 additions and 52 deletions

View File

@@ -11,14 +11,6 @@ use Modules\Authentication\Http\Requests\LoginRequest;
class AuthenticationController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('authentication::index');
}
/**
* Show the form for creating a new resource.
*/
@@ -39,30 +31,6 @@ class AuthenticationController extends Controller
return redirect()->intended(('dashboard'));
}
/**
* Show the specified resource.
*/
public function show($id)
{
return view('authentication::show');
}
/**
* Show the form for editing the specified resource.
*/
public function edit($id)
{
return view('authentication::edit');
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, $id): RedirectResponse
{
//
}
/**
* Remove the specified resource from storage.
*/