@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.user.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.user.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.user.fields.email_helper') }}
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif {{ trans('cruds.user.fields.phone_number_helper') }}
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif {{ trans('cruds.user.fields.password_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('roles'))
{{ $errors->first('roles') }}
@endif {{ trans('cruds.user.fields.roles_helper') }}
@if($errors->has('balance'))
{{ $errors->first('balance') }}
@endif {{ trans('cruds.user.fields.balance_helper') }}
@if($errors->has('quota'))
{{ $errors->first('quota') }}
@endif {{ trans('cruds.user.fields.quota_helper') }}
@if($errors->has('used_quota'))
{{ $errors->first('used_quota') }}
@endif {{ trans('cruds.user.fields.used_quota_helper') }}
@if($errors->has('lat'))
{{ $errors->first('lat') }}
@endif {{ trans('cruds.user.fields.lat_helper') }}
@if($errors->has('long'))
{{ $errors->first('long') }}
@endif {{ trans('cruds.user.fields.long_helper') }}
@if($errors->has('district'))
{{ $errors->first('district') }}
@endif {{ trans('cruds.user.fields.district_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.user.fields.city_helper') }}
@if($errors->has('province'))
{{ $errors->first('province') }}
@endif {{ trans('cruds.user.fields.province_helper') }}
@endsection