@extends('admin.layouts.app') @section('content')

ADD NEW GAME

Back To Listing
@csrf
{{ $gameCode }}
{{-- --}} @if ($errors->has('game_code')){{ $errors->first('game_code') }}@endif
@if ($errors->has('game_title')){{ $errors->first('game_title') }}@endif
@if ($errors->has('game_description')){{ $errors->first('game_description') }}@endif
@if ($errors->has('game_category')) {{ $errors->first('game_category') }} @endif
@if ($errors->has('game_start_date')){{ $errors->first('game_start_date') }}@endif
@if ($errors->has('game_end_date')){{ $errors->first('game_end_date') }}@endif
@if ($errors->has('game_start_time')){{ $errors->first('game_start_time') }}@endif
@if ($errors->has('game_end_time')){{ $errors->first('game_end_time') }}@endif
@if ($errors->has('game_draw_date')){{ $errors->first('game_draw_date') }}@endif
@if ($errors->has('game_draw_time')){{ $errors->first('game_draw_time') }}@endif
@if ($errors->has('game_time_zone')){{ $errors->first('game_time_zone') }}@endif
{{-- --}} @if ($errors->has('game_total_allowed_ticket')){{ $errors->first('game_total_allowed_ticket') }}@endif
@if ($errors->has('game_ticket_prize')){{ $errors->first('game_ticket_prize') }}@endif
@if ($errors->has('game_status')){{ $errors->first('game_status') }}@endif
@if ($errors->has('featured_image')){{ $errors->first('featured_image') }}@endif
@push('scripts') @endpush @endsection