@extends('layouts.master')
@section('title', pageTitle('View Admin User'))
@section('content')
    @include('sections.breadcrumb')
    
    
    
        
            
                
                    {{ $admin->name . " Profile" }}
                    
                    
                        
                        
                            
                                {{ $admin->identifier ?? '---' }}
                            
                         
                     
                    
                        
                        
                            
                                {{ $admin->name ?? '---' }}
                            
                         
                     
                    
                        
                        
                            
                                {{ $admin->phone ?? '---' }}
                            
                         
                     
                    
                        
                        
                            
                                {{ $admin->email ?? '---' }}
                            
                         
                     
                    
                        
                        
                            
                                {{ $admin->state->name ?? '---' }}
                            
                         
                     
                    
                        
                        
                            
                                {{ $admin->location->name ?? '---' }}
                            
                         
                     
                    
                        
                        
                            
                                {{ userRole($admin) ? settingLabel(userRole($admin)) : '---' }}
                            
                         
                     
                    
                    
                 
             
         
     
    
     
@stop
@section('page-scripts')
@stop