@php use App\MyHelpers;use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\DB; $data = DB::table('get_vendor_data')->where('id', Auth::id())->get()[0]; $status = Auth::user()->status; @endphp @extends('backend.layouts.app') @section('PageTitle', 'Profile') @section('content') @if(!$status)
Your account is not activated
Wait for admin to activate your account
@endif
@csrf User Image

{{$data->name}}

User Info


@csrf
Full Name
Email
Username
Shop Name
Joined Date
{{MyHelpers::getDiffOfDate($data->created_at)}}

Shop Description
Phone
Address

Change Password


@csrf
Current Password
New Password
Confirm Password
@endsection @section('AjaxScript') @endsection @section('js') @endsection