@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.team.title_singular') }}
@method('POST') @csrf
@foreach(App\Models\Team::TYPE_RADIO as $key => $label)
@endforeach @if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.team.fields.type_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.team.fields.name_helper') }}
@endsection