@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.appUser.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.appUser.fields.name_helper') }}
@if($errors->has('email')) {{ $errors->first('email') }} @endif {{ trans('cruds.appUser.fields.email_helper') }}
@if($errors->has('guid')) {{ $errors->first('guid') }} @endif {{ trans('cruds.appUser.fields.guid_helper') }}
@if($errors->has('os')) {{ $errors->first('os') }} @endif {{ trans('cruds.appUser.fields.os_helper') }}
@if($errors->has('app_version')) {{ $errors->first('app_version') }} @endif {{ trans('cruds.appUser.fields.app_version_helper') }}
@if($errors->has('phone')) {{ $errors->first('phone') }} @endif {{ trans('cruds.appUser.fields.phone_helper') }}
@if($errors->has('carrier')) {{ $errors->first('carrier') }} @endif {{ trans('cruds.appUser.fields.carrier_helper') }}
@if($errors->has('more_info')) {{ $errors->first('more_info') }} @endif {{ trans('cruds.appUser.fields.more_info_helper') }}
@if($errors->has('tribal_affiliation'))
{{ $errors->first('tribal_affiliation') }}
@endif {{ trans('cruds.appUser.fields.tribal_affiliation_helper') }}
@if($errors->has('username')) {{ $errors->first('username') }} @endif {{ trans('cruds.appUser.fields.username_helper') }}
@if($errors->has('verified')) {{ $errors->first('verified') }} @endif {{ trans('cruds.appUser.fields.verified_helper') }}
@if($errors->has('revoked')) {{ $errors->first('revoked') }} @endif {{ trans('cruds.appUser.fields.revoked_helper') }}
@endsection