{{ __lang('first-name') }}:
{{ htmlentities( $row->name) }}
{{ __lang('last-name') }}
{{ htmlentities( $row->last_name) }}
{{ __lang('telephone-number') }}
{{ htmlentities( $row->mobile_number) }}
{{ __lang('email') }}
{{ htmlentities( $row->email) }}
{{ __lang('status') }}
{{ htmlentities( (empty($row->enabled))? 'Inactive':'Active') }}
{{ __lang('display-picture') }}
@php if(!empty($row->picture) && isUrl($row->picture)): @endphp
@php elseif(!empty($row->picture) && isImage($row->picture)): @endphp
@php endif; @endphp
@php foreach($custom as $row): @endphp
@php if($row->type=='checkbox'): @endphp
{{ htmlentities( $row->name) }}
{{ htmlentities( boolToString($row->value)) }}
@php elseif($row->type=='file'): @endphp
{{ htmlentities( $row->name) }}
@php else: @endphp
{{ htmlentities( $row->name) }}
{{ htmlentities( $row->value) }}
@php endif; @endphp
@php endforeach; @endphp