@extends('layouts.app') @section('content')
{!! Form::open(['url' => action('TransactionController@store'), 'method' => 'post', 'id' => 'transaction_add_form','class' => 'transaction_form', 'files' => true ]) !!}
{!! Form::label('contact_id', __('Supliers') . ':*') !!} {!! Form::select('contact_id', $suppliers, isset($transaction) ? $transaction->contact_id : '', ['class' => 'form-input', 'id'=>'seachable-select', 'placeholder' => __('Please Select One'), 'required']); !!}
Description Quantity Unit Price Sub Total
0
Total 0.00
{!! Form::close() !!}
@endsection @section('javascript') @endsection