@extends('layouts/pos_layout') @section('title', '| ' . $data['pageTitle']) @section('content')
{{ $data['pageTitle'] }}
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'purchaseForm')) !!}
{!! Form::label('import_export_company', 'Company Name:', ['class' => 'col-sm-4 control-label']) !!}

{!! Form::label('delete_portion', 'Delete Portion:*', ['class' => 'col-sm-4 control-label']) !!}

{!! Form::label('branch_id', 'Branch Name:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('branch_id', $data['branches'],null, ['class' => 'form-control custom-select2', 'id' => 'branch_id','placeholder' => 'Select Branch','required'=>'required']) !!}

{!! Form::label('customer_id', 'Customer:', ['class' => 'col-sm-4 control-label']) !!}

{!! Form::label('product_id', 'Product:', ['class' => 'col-sm-4 control-label']) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::submit('Delete', ['id' => 'add', 'class' => 'btn btn-danger']); !!} {{-- Close --}}
{!! Form::close() !!}
@endsection