@extends('layouts.app') @section('title', __('contact.view_contact')) @section('content')

@lang('contact.view_contact')

{!! Form::select('contact_id', $contact_dropdown, $contact->id , ['class' => 'form-control select2', 'id' => 'contact_id']); !!}

@include('contact.partials.contact_info_tab')
@include('ledger_discount.create') @stop @section('javascript') @include('sale_pos.partials.sale_table_javascript') @if(in_array($contact->type, ['both', 'supplier'])) @endif @include('documents_and_notes.document_and_note_js') @if(!empty($contact_view_tabs)) @foreach($contact_view_tabs as $key => $tabs) @foreach ($tabs as $index => $value) @if(!empty($value['module_js_path'])) @include($value['module_js_path']) @endif @endforeach @endforeach @endif @include('sale_pos.partials.subscriptions_table_javascript', ['contact_id' => $contact->id]) @endsection