diff --git a/picquiz/public/images/undefined.jpg b/picquiz/public/images/undefined.jpg
new file mode 100644
index 0000000..63f4498
Binary files /dev/null and b/picquiz/public/images/undefined.jpg differ
diff --git a/picquiz/resources/views/game/game.blade.php b/picquiz/resources/views/game/game.blade.php
new file mode 100644
index 0000000..cc54ec7
--- /dev/null
+++ b/picquiz/resources/views/game/game.blade.php
@@ -0,0 +1,55 @@
+@extends('template')
+
+@php
+ $debug = True;
+@endphp
+
+@section('title')
+
+
+
+
+
Melyik videójáték látható a képen?
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+
+
+
+
+ Készítette: Karácsony Balázs, Györkis Tamás, Kovács Dávid
+
+
+
+
+@endsection
diff --git a/picquiz/resources/views/game/newGame.blade.php b/picquiz/resources/views/game/newGame.blade.php
index 0690a0f..b844611 100644
--- a/picquiz/resources/views/game/newGame.blade.php
+++ b/picquiz/resources/views/game/newGame.blade.php
@@ -1,14 +1,71 @@
-
-
-
-
-
+
+
+
+
Új játék beállításai
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Hány kérdés szerepeljen:
+
+
Sok sikert!
+
Kezdés
+
+
+
+
+
+ Készítette: Karácsony Balázs, Györkis Tamás, Kovács Dávid
+
+
+
+
+@endsection
diff --git a/picquiz/resources/views/game/play.blade.php b/picquiz/resources/views/game/play.blade.php
new file mode 100644
index 0000000..33e1f41
--- /dev/null
+++ b/picquiz/resources/views/game/play.blade.php
@@ -0,0 +1,71 @@
+@extends('template')
+
+@php
+ $debug = True;
+@endphp
+
+@section('title')
+
+
+
+
+
Új játék beállításai
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Hány kérdés szerepeljen:
+
+
Sok sikert!
+
Kezdés
+
+
+
+
+
+ Készítette: Karácsony Balázs, Györkis Tamás, Kovács Dávid
+
+
+
+
+@endsection
diff --git a/picquiz/routes/web.php b/picquiz/routes/web.php
index bdf68c5..3f86ed1 100644
--- a/picquiz/routes/web.php
+++ b/picquiz/routes/web.php
@@ -52,7 +52,9 @@ Route::put('/feedback/all/{id}', [FeedbackController::class, 'update']);
//--------- Game routes --------------------------------------------
-Route::get('/play', function(){ return view('game/newGame'); });
+Route::get('/new', function(){ return view('game/newGame'); });
+
+Route::get('/play', function(){ return view('game/game'); });