{{__('Choose order')}}
×
@csrf
{{__('first name')}}
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
{{__('last name')}}
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
{{__('email')}}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{__('Position')}}
@foreach($positions as $position)
{{$position->title}}
@endforeach
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
{{__('Choose order')}}
1
2
3
4
5
{{__('entity')}}
@if ($errors->has('entity'))
{{ $errors->first('entity') }}
@endif