@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', ]) !!}
{!! Form::label('Item Name', 'Item Name', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('name', $data['taxExemptionItem']['name'], [ 'class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Item Name', ]) !!}

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