@extends('layouts.acc_layout') @section('title', ' | Pos Acc Transaction Head Settings' ) @section('stylesheets') @endsection @section('content')
New POS Acc Transaction Head
{!! Form::open(array('url' => route('pos_auto_voucher_mis_head_store'), 'class'=>'form','method'=>'post')) !!}
{!! Form::label('salesType', ' Transaction Head:*', ['class' => 'control-label'],false) !!} {!! Form::select('salesType', ['' => 'Please Select'] + $transactionHeads, null, ['class' => 'form-control']) !!}

{{ $errors->first('salesType') }}

{!! Form::label('misName', 'Name:*', ['class' => 'control-label'],false) !!} {!! Form::text('misName', null, ['class' => 'form-control']) !!}

{{ $errors->first('misName') }}

{!! Form::label('tableFieldName', 'Table Field Name:*', ['class' => 'control-label'],false) !!} {!! Form::text('tableFieldName', null, ['class' => 'form-control']) !!}

{{ $errors->first('tableFieldName') }}

{!! Form::label('supplierId', ' Supplier:', ['class' => 'control-label'],false) !!} {!! Form::select('supplierId', ['0' => 'Please Select'] + $posSupplier, null, ['class' => 'form-control']) !!}

{{ $errors->first('supplierId') }}

{!! Form::close() !!}
@endsection @section('footerAssets') @endsection