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

Update Fake Profile

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

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

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

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

@else

Only fill in this field if you want to change the password.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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
@if($errors->has('vip_status')) @endif
@if($errors->has('vip_status'))

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

@endif
@endsection