@extends('dashboard.layouts.master') @section('title', __('Profile')) @section('css') @stop @section('content') @if ($errors->any())
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif
{{ $user->name }}
{{ __('About') }}
{{ $user->profile->about }}

{{ __('verification') }}
{{ __('Account verification') }}
{{ __('Orders') }}

{{ $user->orders_count }}

{{ __('Products') }}

{{ $user->products_count }}

{{ __('Total orders') }}

{{ $user->orders_sum_total ?? 0 }}

{{ __('About') }}

{{ $user->profile->about }}

{{ __('User Name') }}

{{ $user->profile->user_name }}

{{ __('Email') }}

{{ $user->profile->email }}

@csrf @method('put')
@endsection @section('script') @stop