@include('shared.alerts')
{{ __('Edit team') }}
@method('PUT') @csrf
@include('shared.input', ['label' => __('Name'), 'name' => 'name', 'value' => old('name', $team->name)])
{{ $errors->first('start') }}
@include('shared.input', ['label' => __('Max count'), 'name' => 'max_count', 'value' => old('max_count', $team->max_count), 'type' => 'number']) @include('shared.input', ['label' => __('Location'), 'name' => 'location', 'value' => old('location', $team->location)])
@include('shared.input', ['label' => __('Published'), 'name' => 'published', 'value' => 1, 'type' => 'checkbox', 'checked' => old('published', $team->published)])
{{ __('Delete team') }}
@method('DELETE') @csrf