@extends('layouts.master') @section('title') @if($client->client_type=="individual") {{$client->first_name}} {{$client->middle_name}} {{$client->last_name}} #{{$client->account_no}} @else {{$client->full_name}} #{{$client->account_no}} @endif @endsection @section('content')
@if(!empty($client->picture)) User profile picture @else User profile picture @endif

@if($client->client_type=="individual") {{$client->first_name}} {{$client->middle_name}} {{$client->last_name}} @else {{$client->full_name}} @endif

@if($client->client_type=="individual")

{{trans_choice('general.individual',1)}}

@else

{{trans_choice('general.business',1)}}

@endif @if (Sentinel::hasAccess('clients.update'))

@endif

@if($client->status=="pending" && Sentinel::hasAccess('clients.approve')) {{trans_choice('general.approve',1)}} {{trans_choice('general.decline',1)}} @endif @if($client->status=="active" && Sentinel::hasAccess('clients.close')) {{trans_choice('general.close',1)}} {{trans_choice('general.inactive',1)}} @endif @if($client->status=="inactive" && Sentinel::hasAccess('clients.approve')) {{trans_choice('general.active',1)}} @endif @if($client->status=="declined" && Sentinel::hasAccess('clients.approve')) {{trans_choice('general.approve',1)}} @endif @if( Sentinel::hasAccess('clients.transfer.client')) {{trans_choice('general.transfer',1)}} @endif

{{trans_choice('general.extra',1)}} {{trans_choice('general.detail',2)}}

{{trans_choice('general.street',1)}}

{!! $client->street !!}

{{trans_choice('general.address',1)}}

{!! $client->address !!}


{{trans_choice('general.description',1)}}

{!! $client->notes !!}

@endsection @section('footer-scripts') @endsection