<?php $__env->startSection('content'); ?>
<div class="col-md-12 content-header" >
    <h1><i class="fa fa-quote-left"></i> <?php echo e(trans('application.estimates')); ?></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:880px;margin-left:20px"><br/>
            <a href="<?php echo e(route('estimates.index')); ?>" class="btn btn-info btn-sm"> <i class="fa fa-chevron-left"></i> <?php echo e(trans('application.back')); ?></a>
         </div>
    </div>
<div class="panel-body">
<div class="row">
<div class="invoice">
    <?php echo Form::open(['route' => ['estimates.store'], 'id' => 'estimate_form', 'data-toggle'=>"validator", 'role' =>"form"]); ?>
    <div class="col-md-12">
      <div class="text-right"><h1><?php echo e(trans('application.estimate')); ?></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,null, ['class' => 'form-control chosen input-sm', '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 input-sm', 'required']); ?>
                    </div>
                </div>
            </div>

        </div>

        <div class="col-md-5" style="padding: 0px">
            <div class="form-group">
                <?php echo Form::label('estimate_no', trans('application.estimate_number')); ?>
                <?php echo Form::text('estimate_no',$estimate_num, ['class' => 'form-control input-sm', 'id' => 'estimate_no', 'required']); ?>
            </div>

            <div class="form-group">
                <?php echo Form::label('estimate_date', trans('application.estimate_date')); ?>
                <?php echo Form::text('estimate_date',null, ['class' => 'form-control datepicker input-sm' , 'id' => 'estimate_date', 'required']); ?>
            </div>
        </div>
</div>

<div class="col-md-12">
    <table class="table table-striped" id="item_table">
        <thead class="item-table-header">
        <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="15%" class="text-center"><?php echo e(trans('application.quantity')); ?></th>
            <th width="15%" class="text-center"><?php echo e(trans('application.price')); ?></th>
            <th width="15%" class="text-center"><?php echo e(trans('application.tax')); ?></th>
            <th width="15%"class="text-right"><?php echo e(trans('application.amount')); ?></th>
        </tr>

        </thead>
        <tbody>
        <tr class="item">
            <td></td>
            <td><div class="form-group"><?php echo Form::text('item_name',null, ['class' => 'form-control input-sm item_name', 'id'=>"item_name" , 'required']); ?></div></td>
            <td><div class="form-group"><?php echo Form::textarea('item_description',null, ['class' => 'form-control item_description input-sm', 'id'=>"item_description" ,'required', 'rows'=>'1' ]); ?></div></td>
            <td><div class="form-group"><?php echo Form::input('number','quantity',null, ['class' => 'form-control calcEvent quantity input-sm', 'id'=>"quantity" , 'required', 'step' => 'any', 'min' => '1']); ?></div></td>
            <td><div class="form-group"><?php echo Form::input('number','price',null, ['class' => 'form-control calcEvent price input-sm', 'id'=>"price", 'required','step' => 'any', 'min' => '1']); ?></div></td>
            <td><div class="form-group"><?php echo Form::customSelect('tax',$taxes,null, ['class' => 'form-control calcEvent tax input-sm', 'id'=>"tax"]); ?></div></td>
            <td class="text-right"><span class="currencySymbol"></span><span class="itemTotal">0.00</span></td>
        </tr>
        </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><!-- /.col -->
    <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>
<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"></span>
                <span id="subTotal">0.00</span>
            </td>
        </tr>
        <tr>
            <th><?php echo e(trans('application.tax')); ?></th>
            <td class="text-right">
                <span class="currencySymbol"></span>
                <span id="taxTotal">0.00</span>
            </td>
        </tr>

        <tr class="amount_due">
            <th><?php echo e(trans('application.total')); ?>:</th>
            <td class="text-right">
                <span class="currencySymbol"></span>
                <span id="grandTotal">0.00</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 input-sm','rows' =>  '2']); ?>
    </div>
    <div class="form-group">
        <?php echo Form::label('terms', trans('application.terms')); ?>
        <?php echo Form::textarea('terms',null, ['class' => 'form-control input-sm', 'rows' =>  '2']); ?>
    </div>
</div>

<div class="col-md-12">
    <button type="submit" class="btn btn-sm btn-success pull-right" id="saveEstimate"><i class="fa fa-save"></i> <?php echo e(trans('application.save')); ?></button>
</div>
    <?php echo Form::close(); ?>
    </div>
    </div>
   </div>
 </div>
 </div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
    <?php echo $__env->make('estimates.partials._estimatesjs', 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(); ?>