@extends('admin.layouts.layout') @section('content')

{{ trans('admin_lang.view') }} {{ $sdata->role_id == 2 ? 'Rider' : 'Driver' }}

@if ($sdata->id == null) @else @endif @if ($sdata->role_id == 2) @include('admin.user.rider') @else @include('admin.user.driver') @endif
{{ __('ID') }}-#{{ $sdata->id }}
{{ __(' Name') }} {!! !empty($sdata->full_name) ? $sdata->full_name : '-' !!}
{{ __(' Email') }} {!! !empty($sdata->email) ? $sdata->email : '-' !!}
{{ __(' DOB') }} {!! !empty($sdata->dob) ? date('M d Y', strtotime($sdata->dob)) : '-' !!}
{{ __(' Mobile number') }} {!! !empty($sdata->mobile_number) ? $sdata->country_code . ' ' . $sdata->mobile_number : '-' !!}
{{ __('Registration date and time') }} {{ $sdata->created_at ? \Carbon\Carbon::parse($sdata->created_at)->timezone('Asia/Kolkata')->format('M d Y H:i') : '-' }}
{{ __('Address') }} {!! !empty($sdata->address) ? $sdata->address : '-' !!}
Profile Image
@if ($sdata->profile_image)
@else @endif
@endsection @section('script') @endsection