@extends('layouts/pos_layout') @section('title', '| ' . $pageTitle) @section('content')
{!! $pageTitle !!} Edit
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!} /home/shikkhaplus/public_html/guk_bk/resources/views/pos/productConfig/productVat/edit.blade.php on line 22
" />
{!! Form::label('Sales Type', 'Sales Type:*', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('sales_type', $salesTypeFor, $datas->sales_type, [ '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, $datas->vat_type, [ '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 = $datas->valid_from, [ '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 = $datas->valid_to, [ '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 = $datas->vat_name, [ '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 = $datas->vat_percent, [ 'class' => 'form-control', 'id' => 'vat_percent', 'type' => 'number', 'placeholder' => 'Enter vat Percent', ]) !!}




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



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