@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.user.title_singular') }}
@method('POST') @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'))
{{ $errors->first('phone') }}
@endif {{ trans('cruds.user.fields.phone_helper') }}
@if($errors->has('identity_card_number'))
{{ $errors->first('identity_card_number') }}
@endif {{ trans('cruds.user.fields.identity_card_number_helper') }}
@if($errors->has('dob'))
{{ $errors->first('dob') }}
@endif {{ trans('cruds.user.fields.dob_helper') }}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif {{ trans('cruds.user.fields.image_helper') }}
@if($errors->has('address_1'))
{{ $errors->first('address_1') }}
@endif {{ trans('cruds.user.fields.address_1_helper') }}
@if($errors->has('state'))
{{ $errors->first('state') }}
@endif {{ trans('cruds.user.fields.state_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.user.fields.city_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') }}
@endsection @section('scripts') @endsection