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

Create Admin user

@csrf
@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') }}

@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('is_active'))

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

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

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

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

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

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

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

@endif
@endsection