@extends('layouts.admin') @section('title') Admin Details | Admin @endsection @section('content')
Information

Email

{{ $admin->email ? $admin->email : 'Nothing found!' }}

Phone

{{ $admin->phone ? $admin->phone : 'Nothing found!' }}

Address

{{ $admin->address ? $admin->address : 'Nothing found!' }}

Joined

{{ $admin->created_at->format('d M, Y') }}

About

{!! $admin->about ? $admin->about : 'Nothing found!' !!}

@endsection @section('style') @endsection