@extends('hr_main') @section('title', '| ' . $data['pageTitle']) @section('content') @include('successMsg')
{!! $data['pageTitle'] !!}
{!! Form::open([ 'files' => 'false', 'id' => 'formId', 'role' => 'form', 'class' => 'form-horizontal form-groups', ]) !!} id }}' />
{!! Form::label('Name', 'Name:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('name', $data['taxParticularItem']->name, [ 'class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Name', 'readonly' => true ]) !!}

{!! Form::label('Short Name', 'Short Name:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('short_name', $data['taxParticularItem']->short_name, [ 'class' => 'form-control', 'id' => 'short_name', 'type' => 'text', 'placeholder' => 'Short Name', 'readonly' => true ]) !!}

{!! Form::label('Order In Reports(Optional)', 'Order In Reports(Optional):', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('sort_order', ($data['taxParticularItem']->sort_order != 0) ? $data['taxParticularItem']->sort_order : '', [ 'class' => 'form-control', 'id' => 'sort_order', 'type' => 'text', 'placeholder' => 'Order In Reports', ]) !!}

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