@extends('website.layout.master_auth') @section('title', 'الرئيسية') @section('content')
{{ auth()->user()->user_name }}
{{ auth()->user()->email }}
  • Your account details
  • Your membership
  • FAQs
  • Chat with the admin
Log out

Your account

  • First name:
    {{ auth()->user()->first_name }}
  • Last name :
    {{ auth()->user()->last_name }}
  • Country of residence:
    {{ optional(auth()->user()->country)->name }}
  • Email :
    {{ auth()->user()->email }}

Edit account details

Your account

@csrf

Edit account details

Current membership

  • Expiry date:
    {{ \Carbon\Carbon::now()->addMonths(auth()->user()->package->duration)->format('d M Y') }}

Date Invoice Level Total billed
15th February 2023 A60D019F20 @m6 Month extensiondo $ 80.00
15th February 2023

(Expired)

A60D019F20 @m6 Month extensiondo $ 80.00
15th February 2023 A60D019F20 @m6 Month extensiondo $ 80.00
15th February 2023 A60D019F20 @m6 Month extensiondo $ 80.00

FAQs

@foreach($faqs as $faq)
{{ $faq->title }}
{!! $faq->description !!}
@endforeach

Chat with the admin

If you have any questions, feel free to chat with the admin.

@endsection