@extends('layouts.md-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('mobile'))
{{ $errors->first('mobile') }}
@endif {{ trans('cruds.user.fields.mobile_helper') }}
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.user.fields.address_helper') }}
@if ($errors->has('location'))
{{ $errors->first('location') }}
@endif {{ trans('cruds.user.fields.location_helper') }}
{{--
--}} {{-- --}}
@if ($errors->has('approved'))
{{ $errors->first('approved') }}
@endif {{ trans('cruds.user.fields.approved_helper') }}
{{--
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.user.fields.status_helper') }}
--}}
@if ($errors->has('roles'))
{{ $errors->first('roles') }}
@endif {{ trans('cruds.user.fields.roles_helper') }}
@if ($errors->has('bio_data'))
{{ $errors->first('bio_data') }}
@endif {{ trans('cruds.user.fields.bio_data_helper') }}
@endsection @section('scripts') @endsection