@extends('admin.layouts.master-soyuz') @section('title',"Edit User - $user->name |") @section('body') @component('admin.component.breadcumb',['secondactive' => 'active']) @slot('heading') {{ __('Edit User') }} @endslot @slot('menu1') {{ __('Edit User') }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@if ($errors->any()) @endif
{{ __('Edit Profile') }}
{{csrf_field()}} {{ method_field('PUT') }}
It will display the username eg. John
Enter valid email address with @ symbol
Enter valid mobile no. eg. 7894561230
Enter valid phone no. eg. 0141-123456
Please select country
Please select state
Please select city
@if($user->role_id =='a' || $user->role_id =='v')
Currency code must be a valid ISO-3 code. Find your currency ISO3 code here
@endif
Optional field ( You can leave it blank )
Select user type eg. (Admin,Seller or Customer)
Please select user profile picture
@if(env('ENABLE_SELLER_SUBS_SYSTEM') == 1)
@endif


Please select user status
@if($wallet_system == 1 ) @if(isset($user->wallet))


Please select wallet status
@endif @endif
{{$errors->first('password_confirmation')}}
@if($user->image !="") @if(file_exists(public_path().'/images/user/'.$user->image)) @else @endif @else @endif
{{ $user->name }}

{{ $user->store['name'] ?? '' }}

@if(!isset($user->country)) {{__("Location not updated")}} @else {{ isset($user->city) ? $user->city->name : "" }} {{ isset($user->state) ? $user->state->name : "" }} {{ isset($user->country) ? $user->country->nicename : "" }} @endif

@endsection @section('custom-script') @endsection