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

User Management

@include('admin.includes.alert')
Card image
Full Name

{{ $data->name }}

Email

{{ $data->email }}

Phone

{{ $data->phone }}

Location

{{ $data->location }}

Follower Request @foreach($data->followerRequest as $fr)
  • {{ $fr->name }}
  • @endforeach
    Following @foreach($data->userfollowing as $uf)
  • {{ $uf->name }}
  • @endforeach
    @csrf @if( @$data->selfie->image )
    @else

    Status not available

    @endif
    @if( @$data->selfie->image )

    Status: {{ $data->selfie->status }}

    Selfie Click to view

    @else

    Not Uploaded

    @endif
    @if( @$data->pictures )

    @foreach($data->pictures as $picture) Click to view @endforeach

    @else

    Not Uploaded

    @endif
    @csrf @if(@$data->identity->image)
    @else

    Status not available

    @endif
    @if( @$data->identity->image )

    Status: {{ $data->identity->status}}

    Identity Click to view

    @else

    Not Uploaded

    @endif
    @csrf @method('PATCH')
    @endsection @push('script') @endpush