diff --git a/public/manualbook.pdf b/public/manualbook.pdf
new file mode 100644
index 0000000..1c6339f
Binary files /dev/null and b/public/manualbook.pdf differ
diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php
index 2cf0a36..8b0bf5b 100644
--- a/resources/views/auth/login.blade.php
+++ b/resources/views/auth/login.blade.php
@@ -47,7 +47,7 @@
-
+ {{--
--}}
diff --git a/routes/web.php b/routes/web.php
index 9566930..f275486 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -16,6 +16,10 @@
Route::middleware(['auth:web'])->group(function(){
Route::get('/', 'HomeController@index')->name('web.index');
+ Route::get('buku-panduan', function(){
+ return view('panduan.buku');
+ })->name('buku.panduan');
+
Route::get('pengaturan','HomeController@pengaturan')->name('pengaturan.index');
Route::get('ubah-pengaturan','HomeController@editPengaturan')->name('pengaturan.edit');
Route::post('ubah-pengaturan','HomeController@storePengaturan')->name('pengaturan.store');