@extends('layout')
@section('title','User Info')
@section('content')
@include('user_card')
-
Name
{{$customer_data->prefix ?? ''}} {{$customer_data->first_name ?? ''}} {{$customer_data->last_name ?? ''}}
-
Date of Birth
{{$customer_data->dob ?? ''}}
-
Address
{{$customer_data->address_line_1 ?? ''}}
-
Time Zone
{{$customer_data->timezone ?? ''}}
-
Status
@if($customer_data->status == 1) Active @else In-Active @endif
-
Email
{{$customer_data->email ?? ''}}
-
Mobile
{{$customer_data->mobile ?? ''}}
@endsection