@extends('layouts/pos_layout') @section('title', '| ' . $pageTitle) @section('content')
{!! $pageTitle !!} View
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!} /home/shikkhaplus/public_html/morning_bird_bk/resources/views/pos/productConfig/productVat/view.blade.php on line 17
" />
{!! 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', 'disabled' => true, ]) !!}

{!! 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', 'disabled' => true, ]) !!}

{!! 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', 'disabled' => 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', 'disabled' => 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', 'disabled' => true, ]) !!}

{!! 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', 'disabled' => true, ]) !!}







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