@extends('admin.layout.master') @section('title', 'User Manager') @section('content')

View User Details

@if($data->profile_image) banner_image @else Logo @endif
Name: {{ $data->first_name ? $data->first_name . ' ' . $data->last_name : '-' }}
Email: {{ $data->email }}
Phone Number: {!! $data->phone !!}
Address: {!! $data->address !!}
State: {!! $data->state !!}
City: {!! $data->city !!}
Zipcode: {!! $data->zipcode !!}
Created Date: {{ date('M d, Y', strtotime($data->created_at)) }}
Status: @if ($data->status) Activated @else De-activated @endif
@endsection