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

@lang('account.create_bulk_payment')

@csrf

@lang('report.filters')

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

@lang('account.invoices')

@can('sell.payments')

@lang('account.cheque_details')

@lang('lang_v1.payment')

{{-- content goes here --}}
{{--
@lang('lang_v1.advance_balance'): {!! Form::hidden('advance_balance', null, ['id' => 'advance_balance', 'data-error-msg' => __('lang_v1.required_advance_balance_not_available')]); !!}
--}}
@foreach($payment_lines as $payment_line) @if($payment_line['is_return'] == 1) @php $change_return = $payment_line; @endphp @continue @endif @include('sale_pos.partials.payment_row', ['removable' => !$loop->first, 'row_index' => $loop->index, 'payment_line' => $payment_line]) @endforeach
{{--
--}}
{!! Form::label('sale_note', __('sale.sell_note') . ':') !!} {!! Form::textarea('sale_note', !empty($transaction)? $transaction->additional_notes:null, ['class' => 'form-control', 'rows' => 3, 'placeholder' => __('sale.sell_note')]); !!}
{!! Form::label('staff_note', __('sale.staff_note') . ':') !!} {!! Form::textarea('staff_note', !empty($transaction)? $transaction->staff_note:null, ['class' => 'form-control', 'rows' => 3, 'placeholder' => __('sale.staff_note')]); !!}

@lang('lang_v1.balance'): 0.00
@endcan
@endsection @section('javascript') @endsection