<?php $__env->startSection('content'); ?>
<div class="col-md-12 content-header" >
    <h1><i class="fa fa-file-pdf-o"></i> <?php echo e(trans('application.invoices')); ?></h1>
</div>
<section class="content">
    <div class="row">
        <div class="col-md-12">
            <div class="panel panel-default">
                <div class="row">
                    <div class="col-md-6" style="width:1035px;margin-left:20px"><br/>
                        <a href="<?php echo e(route('invoices.index')); ?>" class="btn btn-info btn-sm"> <i class="fa fa-chevron-left"></i> <?php echo e(trans('application.back')); ?></a>
                        <a href="<?php echo e(route('invoices.show', $invoice->uuid)); ?>" class="btn btn-primary btn-sm pull-right"> <i class="fa fa-search"></i>  <?php echo e(trans('application.preview')); ?></a>
                    </div>
                </div>
                <div class="panel-body">
                    <div class="row">
                        <div class="invoice">
                            <?php echo Form::model($invoice, ['route' => ['invoices.update', $invoice->uuid],  'method' => 'PATCH', 'id' => 'invoice_form', 'data-toggle'=>"validator", 'role' =>"form"]); ?>

                            <div class="col-md-12">
                                <div class="text-right"><h1><?php echo e(trans('application.invoice')); ?></h1></div>
                                <div class="col-md-7" style="padding: 0px">
                                    <div class="contact to">
                                        <div class="form-group">
                                            <?php echo Form::label('client', trans('application.client')); ?>

                                            <div class="input-group col-md-7">
                                                <?php echo Form::select('client',$clients,$invoice->client_id, ['class' => 'form-control chosen', 'id' => 'client', 'required']); ?>

                                            </div>
                                        </div>
                                        <div class="form-group">
                                            <?php echo Form::label('currency', trans('application.currency')); ?>

                                            <div class="input-group col-md-7">
                                                <?php echo Form::select('currency',$currencies,null, ['class' => 'form-control chosen', 'required']); ?>

                                            </div>
                                        </div>
                                        <div class="form-group">
                                            <?php echo Form::label('number', trans('application.invoice_number')); ?>

                                            <div class="input-group col-md-7">
                                            <?php echo Form::text('number',null, ['class' => 'form-control', 'id' => 'invoice_no', 'required']); ?>

                                        </div>
                                       </div>
                                    </div>
                                </div>
                                <div class="col-md-5" style="padding: 0px">

                                    <div class="form-group">
                                        <?php echo Form::label('invoice_date', trans('application.date')); ?>

                                        <?php echo Form::text('invoice_date',null, ['class' => 'form-control datepicker' , 'id' => 'invoice_date', 'required']); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo Form::label('due_date', trans('application.due_date')); ?>

                                        <?php echo Form::text('due_date',null, ['class' => 'form-control datepicker' , 'id' => 'due_date', 'required']); ?>

                                    </div>
                                    <div class="form-group">
                                        <?php echo Form::label('status', trans('application.status')); ?>

                                        <select class="form-control chosen required" name="status" id="status">
                                            <?php foreach($statuses as $key => $status): ?>
                                            <option value="<?php echo e($key); ?>" <?php echo e($key == $invoice->status ?  'selected' : ''); ?>> <?php echo e(strtoupper($status['label'])); ?> </option>
                                            <?php endforeach; ?>
                                        </select>
                                    </div>

                                </div>
                            </div>
                            <div class="col-md-12">
                                <table class="table table-striped" id="item_table">
                                    <thead style="background: #2e3e4e;color: #fff;">
                                    <tr>
                                        <th width="5%"></th>
                                        <th width="20%"><?php echo e(trans('application.product')); ?></th>
                                        <th width="35%"><?php echo e(trans('application.description')); ?></th>
                                        <th width="10%"><?php echo e(trans('application.quantity')); ?></th>
                                        <th width="10%"><?php echo e(trans('application.price')); ?></th>
                                        <th width="15%"><?php echo e(trans('application.tax')); ?></th>
                                        <th width="15%"class="text-right"><?php echo e(trans('application.amount')); ?></th>
                                    </tr>
                                    </thead>
                                    <tbody>
                                    <?php foreach($invoice->items as $item): ?>
                                    <tr class="item">
                                        <td>
                                            <span class="btn btn-danger btn-xs deleteItem" data-id="<?php echo e($item->uuid); ?>"><i class="fa fa-trash"></i></span>
                                            <?php echo Form::hidden('itemId',$item->uuid, ['id'=>'itemId', 'required']); ?>

                                        </td>
                                        <td>
                                            <div class="form-group"><?php echo Form::text('item_name',$item->item_name,['class' => 'form-control input-sm item_name', 'id'=>"item_name", 'required' ]); ?></div>
                                        </td>
                                        <td>
                                            <div class="form-group"><?php echo Form::text('item_description',$item->item_description,['class' => 'form-control input-sm item_description', 'id'=>"item_description", 'required' ]); ?></div>
                                        </td>
                                        <td class="text-center">
                                            <div class="form-group">
                                                <?php echo Form::input('number', 'quantity',$item->quantity, ['class' => 'form-control calcEvent input-sm quantity', 'id'=>"quantity" , 'required', 'step' => 'any', 'min' => '1']); ?>

                                            </div>
                                        </td>
                                        <td class="text-right">
                                            <div class="form-group"><?php echo Form::input('number','price',$item->price, ['class' => 'form-control input-sm calcEvent rate', 'id'=>"price", 'required', 'step' => 'any', 'min' => '1']); ?></div>
                                        </td>
                                        <td>
                                            <div class="form-group"><?php echo Form::customSelect('tax',$taxes,$item->tax_id, ['class' => 'form-control input-sm calcEvent tax', 'id'=>"tax"]); ?></div>
                                         </td>
                                        <td class="text-right"><span class="itemTotal"><?php echo e($invoice->totals[$item->uuid]['itemTotal']); ?></span></td>
                                    </tr>
                                    <?php endforeach; ?>

                                    </tbody>
                                </table>
                            </div><!-- /.col -->
                            <div class="col-md-6">
                                <span id="btn_add_row" class="btn btn-sm btn-info "><i class="fa fa-plus"></i> <?php echo e(trans('application.add_row')); ?></span>
                                <span id="btn_product_list_modal" class="btn btn-sm btn-primary "><i class="fa fa-plus"></i> <?php echo e(trans('application.add_from_products')); ?></span>
                            </div><!-- /.col -->
                            <div class="col-md-6">
                                <table class="table">
                                    <tbody>
                                    <tr>
                                        <th style="width:50%"><?php echo e(trans('application.subtotal')); ?>:</th>
                                        <td class="text-right">
                                            <span class="currencySymbol"><?php echo e($invoice->currency); ?></span>
                                            <span id="subTotal"><?php echo e($invoice->totals['subTotal']); ?></span>
                                        </td>
                                    </tr>
                                    <tr>
                                        <th><?php echo e(trans('application.tax')); ?>:</th>
                                        <td class="text-right">
                                            <span class="currencySymbol"><?php echo e($invoice->currency); ?></span>
                                            <span id="taxTotal"><?php echo e($invoice->totals['taxTotal']); ?></span>
                                        </td>
                                    </tr>
                                    <tr>
                                        <th style="vertical-align: middle"><?php echo e(trans('application.discount')); ?>:</th>
                                        <td class="text-right">
                                            <div class="form-group">
                                                <?php echo Form::input('number','discount', null,['class' => 'form-control text-right input-sm calcEvent', 'id' => 'discount', 'step'=>'any', 'min'=>'0']); ?>

                                            </div>
                                        </td>
                                    </tr>
                                    <tr>
                                        <th><?php echo e(trans('application.total')); ?>:</th>
                                        <td class="text-right">
                                            <span class="currencySymbol"><?php echo e($invoice->currency); ?></span>
                                            <span id="grandTotal"><?php echo e($invoice->totals['grandTotal']); ?></span>
                                        </td>
                                    </tr>
                                    <tr>
                                        <th><?php echo e(trans('application.paid')); ?>:</th>
                                        <td class="text-right">
                                            <span class="currencySymbol"><?php echo e($invoice->currency); ?></span>
                                            <span id="paidTotal"><?php echo e($invoice->totals['paidFormatted']); ?></span>
                                            <?php echo Form::hidden('paid',$invoice->totals['paid'], ['id' => 'paidAmount']); ?>

                                        </td>
                                    </tr>
                                    <tr class="amount_due">
                                        <th><?php echo e(trans('application.amount_due')); ?>:</th>
                                        <td class="text-right">
                                            <span class="currencySymbol"><?php echo e($invoice->currency); ?></span>
                                            <span id="amountDue"><?php echo e($invoice->totals['amountDue']); ?></span>
                                        </td>
                                    </tr>
                                    </tbody>
                                </table>
                            </div><!-- /.col -->

                            <div class="col-md-12">
                                <div class="form-group">
                                    <?php echo Form::label('notes', trans('application.notes')); ?>

                                    <?php echo Form::textarea('notes',null, ['class' => 'form-control','rows' =>  '2']); ?>

                                </div>
                                <div class="form-group">
                                    <?php echo Form::label('terms', trans('application.terms')); ?>

                                    <?php echo Form::textarea('terms',null, ['class' => 'form-control', 'rows' =>  '2', 'id' => 'invoice_terms']); ?>

                                </div>
                            </div>

                            <div class="col-md-12">

                                <button type="submit" class="btn btn-sm btn-success pull-right" id="saveInvoice"><i class="fa fa-save"></i> <?php echo e(trans('application.save_invoice')); ?></button>
                            </div>
                            <?php echo Form::close(); ?>

                        </div>
                        </div>
                    </div>
                </div>
            </div>>
        </div>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
    <?php echo $__env->make('invoices.partials._invoices_js', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>