re-ordered all of the view directories

setup corp tax ratio for structure tax helper
modified all view functions for new directory layout
This commit is contained in:
2019-02-13 21:07:21 -06:00
parent a2045377f1
commit d52a339637
37 changed files with 132 additions and 333 deletions

View File

@@ -30,7 +30,7 @@ class WikiController extends Controller
return redirect('/dashboard')->with('error', 'Already registered for the wiki!');
}
return view('wiki.register')->with('name', $name);
return view('wiki.user.register')->with('name', $name);
}
public function storeRegister(Request $request) {
@@ -83,7 +83,7 @@ class WikiController extends Controller
return redirect('/dashboard')->with('error', 'Login Not Found!');
}
return view('wiki.changepassword')->with('name', $name);
return view('wiki.user.changepassword')->with('name', $name);
}
public function changePassword(Request $request) {