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

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

@endif

{{ trans('cruds.user.fields.password_helper') }}

@if($errors->has('roles'))

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

@endif

{{ trans('cruds.user.fields.roles_helper') }}

{{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- @if($errors->has('image'))--}} {{--

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

--}} {{-- @endif--}} {{--

--}} {{-- {{ trans('cruds.user.fields.image_helper') }}--}} {{--

--}} {{--
--}} {{--
--}} {{-- --}} {{-- @foreach(App\User::GENDER_RADIO as $key => $label)--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{-- @endforeach--}} {{-- @if($errors->has('gender'))--}} {{--

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

--}} {{-- @endif--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{-- @if($errors->has('about'))--}} {{--

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

--}} {{-- @endif--}} {{--

--}} {{-- {{ trans('cruds.user.fields.about_helper') }}--}} {{--

--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{-- @if($errors->has('address'))--}} {{--

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

--}} {{-- @endif--}} {{--

--}} {{-- {{ trans('cruds.user.fields.address_helper') }}--}} {{--

--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{-- @if($errors->has('user_status_id'))--}} {{--

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

--}} {{-- @endif--}} {{--
--}}
@endsection @section('scripts') @stop