@extends('hr_main') @section('title', '| ' . $data['pageTitle']) @section('content')
{!! $data['pageTitle'] !!}
{!! Form::open([ 'url' => url('hr/employeeIdCardTypeConfig/update'), 'id' => 'formId', 'class' => 'form', 'method' => 'post', ]) !!}
{!! Form::label('name', 'Type Name', ['class' => 'control-label']) !!} *
{!! Form::text('name', $data['model']->name, [ 'class' => 'form-control', 'id' => 'name', ]) !!}


{!! Form::label('amount', 'Print Charge Amount', ['class' => 'control-label']) !!} *
{!! Form::text('amount', $data['model']->amount, [ 'class' => 'form-control', 'id' => 'amount', ]) !!}

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