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