@extends('admin.layout.app') @section('title') {{ $appUser->name ?? "Show App User" }} @endsection @section('header')

Home - App User Managment

@endsection @section('content')
{{ __('Show') }} App User
Name: {{ $appUser->name }}
Email: {{ $appUser->email }}
Image: {{ $appUser->image }}
Status: {{ $appUser->status }}
@endsection