@extends('layouts.app') @section('title', 'Create Tournament') @section('content')
Back to Tournaments

Create Tournament

Set up your own tournament and invite players to compete

@csrf

Tournament Details

@error('title')
{{ $message }}
@enderror
@error('game_id')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror

Tournament Configuration

@if(!auth()->user()->canHostPaidTournaments())
You need Level 4+ and KYC verification to host paid tournaments
@endif @error('entry_fee')
{{ $message }}
@enderror
@error('max_participants')
{{ $message }}
@enderror
@error('starts_at')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Cancel

🎯 Tournament Tips

Set realistic entry fees to attract more participants
Choose power of 2 participants for knockout tournaments
Schedule tournaments at peak gaming hours
Provide clear rules and match format details
@endsection