middleware('guest')->except('logout'); } /** * Show the application's login form. * * @return \Illuminate\Http\Response */ public function showLoginForm() { // return view('auth.login'); // return $this->traitShowLoginForm(); return view('auth.login'); } /** * 顯示接案者的登入表單 * * @return \Illuminate\Http\Response */ public function showReceiverLoginForm() { return $this->showLoginForm(); } /** * 顯示發案者的登入表單 * * @return \Illuminate\Http\Response */ public function showCaseBuilderLoginForm() { return $this->showLoginForm(); } /** * 顯示網站管理者的登入表單 * * @return \Illuminate\Http\Response */ public function showAdminLoginForm() { return $this->showLoginForm(); } }