add login page & register page

This commit is contained in:
jenoh
2020-03-13 09:57:34 +01:00
parent 9da138fe63
commit cae091e1ec
16 changed files with 688 additions and 4 deletions

View File

@ -17,3 +17,7 @@ Route::get('/', function () {
Route::get('contact-us', 'ContactUSController@contactUS');
Route::post('contact-us', ['as' => 'contactus.store', 'uses' => 'ContactUSController@contactUSPost']);
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');