@extends('layouts.app') @section('title', trans('lang.profile_page')) @section('content')
{{ __('lang.profile_picture') }}
{{ $userData['firstName'] ?? '' }} {{ $userData['lastName'] ?? '' }}
@if($userData['isVerify']) @else @endif

{{ __('lang.member_since') }}

@if(isset($userData['createdAt'])) {{ date('F Y', strtotime($userData['createdAt'])) }} @else {{ __('lang.not_available') }} @endif

{{ __('lang.rides_taken') }}

00

{{ __('lang.rides_published') }}

00

{{ __('lang.rating') }}

{{ $userData['reviewCount'] > 0 ? number_format($userData['reviewSum'] / $userData['reviewCount'], 1) : '0.0' }} | {{ $userData['reviewCount'] }} {{ __('lang.ratings') }}

@include('profile.components.account') @include('profile.components.verification') @include('profile.components.payment') @include('profile.components.vehicle') @include('profile.components.preferences')
@section('script') @endsection @endsection