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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection @section('preJavascript') @endsection