@extends('layouts.admin') @section('content')

Update Person

@csrf @method('PUT')
@if($errors->has('nickname')) @endif
@if($errors->has('nickname'))

{{ $errors->first('nickname') }}

@endif
@if($errors->has('website')) @endif
@if($errors->has('website'))

{{ $errors->first('website') }}

@endif
@if($errors->has('email')) @endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('age')) @endif
@if($errors->has('age'))

{{ $errors->first('age') }}

@endif
@if($errors->has('city')) @endif
@if($errors->has('city'))

{{ $errors->first('city') }}

@endif
@if($errors->has('country')) @endif
@if($errors->has('country'))

{{ $errors->first('country') }}

@endif
@if($errors->has('comments')) @endif
@if($errors->has('comments'))

{{ $errors->first('comments') }}

@endif
@if($errors->has('recruiter_id')) @endif
@if($errors->has('recruiter_id'))

{{ $errors->first('recruiter_id') }}

@endif
@if($errors->has('converter_id')) @endif
@if($errors->has('converter_id'))

{{ $errors->first('converter_id') }}

@endif
@endsection