@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.team.title_singular') }}
@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('province'))
{{ $errors->first('province') }}
@endif {{ trans('cruds.team.fields.province_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.team.fields.city_helper') }}
@if($errors->has('district'))
{{ $errors->first('district') }}
@endif {{ trans('cruds.team.fields.district_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.team.fields.name_helper') }}
@if($errors->has('village'))
{{ $errors->first('village') }}
@endif {{ trans('cruds.team.fields.village_helper') }}
@endsection