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

Administrator's Details

First Name:
{!! $data->first_name !!}

Last Name:
{!! $data->last_name !!}

Contact Number:
{!! $data->phone !!}

Email:
{!! $data->email !!}

@if ($data->image != '' && file_exists(uploadsDir('admin') . $data->image))

Media:

@endif

Is Active:
{!! ($data->is_active > 0) ? 'Yes' : 'No' !!}

@endsection