@extends('layouts.app') @section('title','Faculty') @section('pages')
@include('layouts.partials.nav-menu')
@if(auth()->user()->can('faculty-edit')) @endif
Account Details

Account Name {{$account->name}}
Account Code {{$account->code}}
Account Type {{$account->type_name}}
Account Category {{$account->category_name}}
Accounting Group {{$account->group_name}}
@if($account->image != '') @else @endif

Update Profile Image

@php $auth_format = \Session::get('company_data')['date_format'] ?? ''; @endphps
Personal Details

Date Of Birth: {{ date($auth_format, strtotime($account->date_of_birth)) }}, Marital Status: {{$account->marital_status}}, Gender: {{$account->gender}}, Blood Group: {{$account->blood_group}}, @if($account->guardian_name != '') Guardian Name: {{$account->guardian_name}}, @endif @if($account->anniversary_date != '') Anniversary date: {{ date($auth_format, strtotime($account->anniversary_date)) }}, @endif Designation/Description: {{$account->any_known_allergies}},
@endsection @section('js') @endsection