{!! Form::label('id', 'Id:') !!}

{{ $user->id }}

{!! Form::label('name', 'Name:') !!}

{{ $user->name }}

{!! Form::label('email', 'Email:') !!}

{{ $user->email }}

{!! Form::label('mobile_no', 'Mobile No:') !!}

{{ $user->mobile_no }}

{!! Form::label('user_type', 'Type:') !!}

{{ $user->user_type == 1 ? "Super Admin" : ($user->user_type == 2 ? "Admin" : "Agent") }}

{!! Form::label('created_at', 'Created At:') !!}

{{ convertToTimezone($user->created_at, "Asia/Kolkata")->format('d-m-Y H:i:s') }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ convertToTimezone($user->updated_at, "Asia/Kolkata")->format('d-m-Y H:i:s') }}