@extends('layouts.app') @section('title', __('account.edit_cheque')) @section('content')

Edit Cheque

@csrf @method('PUT')

@lang('report.filters')

{!! Form::label('contact_id', __('contact.contact') . ':*') !!} {!! Form::select('contact_id', $contacts, $cheque->contact_id, ['class' => 'form-control select2', 'id' => 'contact_id', 'required', 'disabled', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!}

@lang('account.invoices')

@foreach($cheque_transactions as $cheque_transaction) @endforeach

@lang('account.cheque_details')

{!! Form::label("account_id" , __('lang_v1.payment_account') . ':*') !!} {!! Form::select('account_id', $accounts, $cheque->account_id, ['class' => 'form-control select2', 'required', 'style' => 'width:100%']); !!}
{{--
--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{-- --}} {{--
--}}
@endsection @section('javascript') @endsection