@extends('layouts.app') @section('title','Accounts') @section('pages')
@include('layouts.partials.nav-menu')
@if(auth()->user()->can('accounts-edit')) @endif
@php $auth_format = \Session::get('company_data')['date_format'] ?? ''; @endphp
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}}
Additional Details

Account Settlement Type {{$account->settlement_type}}
Account Balance Type {{$account->balance_type}}
Opening Balance {{$account->opening_balance}}
Print Name {{$account->print_name}}
Referred By {{$account->credit_limit}}
@if($account->image != '') @else @endif

Update Profile Image

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 Any Known Allergies: {{$account->any_known_allergies}},
{{--
--}}
@endsection @section('js') @endsection