@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.user.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @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('dob'))
{{ $errors->first('dob') }}
@endif {{ trans('cruds.user.fields.dob_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.user.fields.address_helper') }}
@if($errors->has('country'))
{{ $errors->first('country') }}
@endif {{ trans('cruds.siteReg.country_helper') }}
@if($errors->has('state'))
{{ $errors->first('state_id') }}
@endif {{ trans('cruds.siteReg.state_helper') }}
@if($errors->has('city'))
{{ $errors->first('city_id') }}
@endif {{ trans('cruds.siteReg.city_helper') }}
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif {{ trans('cruds.user.fields.password_helper') }}
@if($errors->has('branch'))
{{ $errors->first('branch_id') }}
@endif {{ trans('cruds.siteReg.branch_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('roles'))
{{ $errors->first('roles') }}
@endif {{ trans('cruds.user.fields.roles_helper') }}

@endsection