@extends('layouts/pos_layout') @section('title', '| '. $pageTitle) @section('content')
{!! $pageTitle !!} Add
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('Sales Type', 'Sales Type:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('sales_type', $salesTypeFor, null, array('class'=>'form-control', 'id' => 'sales_type', 'placeholder' => 'Select Type')) !!}

{!! Form::label('Vat Type', 'Vat Type:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('vat_type', $vatFor, null, array('class'=>'form-control', 'id' => 'vat_type', 'placeholder' => 'Select Type')) !!}

{!! Form::label('effect_from', 'Effect From:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('valid_from', $value = null, ['class' => 'form-control', 'id' => 'valid_from', 'type' => 'text', 'placeholder' => 'Enter Effect From', 'readonly' => true]) !!}

{!! Form::label('effect_to', 'Effect To:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('valid_to', $value = null, ['class' => 'form-control', 'id' => 'valid_to', 'type' => 'text', 'placeholder' => 'Enter Effect To', 'readonly' => true]) !!}

{!! Form::label('vat_name', 'Vat Name:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('vat_name', $value = null, ['class' => 'form-control', 'id' => 'vat_name', 'type' => 'text', 'placeholder' => 'Enter Vat Name']) !!}

{!! Form::label('vat_percent', 'Vat Percent:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('vat_percent', $value = null, ['class' => 'form-control', 'id' => 'vat_percent', 'type' => 'number', 'placeholder' => 'Enter Vat Percent']) !!}




{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close



{!! Form::close() !!}
@endsection