@extends('layouts.app') @section('content') @include('includes.top-nav')
@include('includes.navbar')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Game Information
Enter the name of the game
Full URL to the game
Optional: Brief description of the game
Optional: Upload a thumbnail image (JPG, PNG, GIF)
Cancel
@include('includes.footer')
@include('includes.footer-script') @endsection