{{-- @extends('admin.layouts.master') @section('title', 'Edit Users') @section('content')

{{ __('User Edit') }}

{{ __('Edit User & Role') }}

@csrf

{{ __('Upload 70X70 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

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

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

@endif
@if ($errors->has('name'))

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

@endif
@if ($errors->has('email'))

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

@endif
@if ($errors->has('phone_no'))

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

@endif
@if ($errors->has('whatsapp_no'))

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

@endif
@if ($errors->has('address'))

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

@endif
@endsection --}} @extends('admin.layouts.master') @section('title', 'Add User') @section('content')

{{ __('Add New User') }}

{{ __('Add New User') }}

@csrf
@if ($errors->has('name'))

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

@endif
@if ($errors->has('email'))

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

@endif
@if ($errors->has('phone_no'))

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

@endif
@if ($errors->has('whatsapp_no'))

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

@endif
@if ($errors->has('user_type'))

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

@endif
@if ($errors->has('address'))

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

@endif
@if ($errors->has('icon'))

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

@endif
@endsection