@extends('layouts.app') @section('title', $contact->name . ' - ' . __('gym::lang.id_card')) @section('content') @include('gym::layouts.nav') @php $settings = json_decode($business->gym_settings); @endphp

{{ $business->name }}

{!! nl2br(e($settings->gym->address ?? '')) !!}

@if(!empty($settings->gym->phone) || !empty($settings->gym->email))

@if(!empty($settings->gym->phone)) @lang('contact.mobile') : {{ $settings->gym->phone }} @endif @if(!empty($settings->gym->phone) && !empty($settings->gym->email)) | @endif @if(!empty($settings->gym->email)) @lang('business.email'): {{ $settings->gym->email }} @endif

@endif

gym_member_profile_photo) src="{{ asset('uploads/gym/' . $contact->gym_member_profile_photo) }}" @else src="{{ asset('img/gym_profile.png') }}" @endif alt="Member Photo">

{{ $contact->name }}

@lang('gym::lang.member_id'): {{ $contact->contact_id }}

@endsection