diff --git a/resources/views/client/idelanding.blade.php b/resources/views/client/idelanding.blade.php index 75801fa..f04930e 100644 --- a/resources/views/client/idelanding.blade.php +++ b/resources/views/client/idelanding.blade.php @@ -1,17 +1,24 @@ @extends('layouts.ide') @section('title') -{{ env('APP_NAME') }} +Start Page @endsection @section('titlediscord') - + @endsection @section('descdiscord') @endsection @section('content') -

My Games

- -

This page does not have any functionality yet other than logging in.

-

Please press the New button in order to create a place to host.

+@guest +

Please Log In to continue.

+@else +

Welcome, {{ Auth::user()->name }}

+ +

This page does not have any functionality yet other than logging in.

+

Please press the New button in order to create a place to host.

+@endguest @endsection \ No newline at end of file diff --git a/resources/views/layouts/ide.blade.php b/resources/views/layouts/ide.blade.php index ff418a9..6d94b9f 100644 --- a/resources/views/layouts/ide.blade.php +++ b/resources/views/layouts/ide.blade.php @@ -24,18 +24,18 @@

Studio

@guest - Log In + Log In @else -

{{ Auth::user()->name }}

- @endguest -
- My Games -
- My Assets +

{{ Auth::user()->name }}

+
+ My Games +
+ My Assets + @endguest
@yield('content')
- + \ No newline at end of file