@extends('layouts.app_rest') @section('content')
{!! Form::open(['url' => action('PurchaseController@store'), 'method' => 'post', 'id' => 'add_purchase_form', 'files' => true ]) !!} {!! Form::hidden('location_id', $default_location, ['id' => 'location_id', 'required']) !!}
{!! Form::select('contact_id', $suppliers , null, ['class' => 'form-input', 'id' => 'supplier_id', 'required', 'placeholder' => __('Please Select')]); !!}
{!! Form::hidden('exit_product_id', null, ['id' => 'exit_product_id']); !!}
No SKU Description Purchase Price Sale Price Quantity Discount Line Total Actions
{!! Form::label('discount_amount', __( 'Discount Amount' ) . ':') !!} {!! Form::text('discount_amount', 0, ['class' => 'form-input input_number']); !!}
{!! Form::hidden('tax_amount', 0, ['id' => 'tax_amount']); !!}
{!! Form::hidden('final_total', 0 , ['id' => 'grand_total_hidden']); !!}
0
0
0
@include('booking.partials.payment_row_form', ['row_index' => 0])
BACK
{!! Form::close() !!}
@endsection @section('javascript') @endsection