@extends('admin.layouts.app') @section('content')
Back To Listing UPDATE GAME
@csrf @method('PUT') {{ $gameDetail->game_code }}
@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_min_range')){{ $errors->first('game_min_range') }}@endif
@if ($errors->has('game_max_range')){{ $errors->first('game_max_range') }}@endif
@if ($errors->has('game_status')){{ $errors->first('game_status') }}@endif
{{$gameDetail->featured_image}} @if ($errors->has('featured_image')){{ $errors->first('featured_image') }}@endif
@push('scripts') @endpush @endsection