@extends('layout.master') @section('content') @include('layout.errorform') @include('layout.info')
Add Tax
{!! Form::open(['route' => 'taxes.store', 'class' => 'form-horizontal', 'autocomplete' => 'off']) !!}
{!! Form::label('pr', 'Tax :', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::input('text', 'tax', @$value, ['class' => 'form-control', 'placeholder' => 'Tax', 'id' => 'pr']) !!}
{!! Form::label('co', 'Amount :', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::input('text', 'amount', @$value, ['class' => 'form-control', 'placeholder' => 'Amount in Percent', 'id' => 'co']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary btn-lg btn-block']) !!}
{!! Form::close() !!}
@endsection @section('jquery') $(document).on('keyup', 'input', function () { toUppercase(this); }); function toUppercase(obj) { var mystring = obj.value; var sp = mystring.split(' '); var wl=0; var f ,r; var word = new Array(); for (i = 0 ; i < sp.length ; i ++ ) { f = sp[i].substring(0,1).toUpperCase(); r = sp[i].substring(1).toUpperCase(); word[i] = f+r; } newstring = word.join(' '); obj.value = newstring; return true; } @endsection