@extends('layouts.adminLayout.admin_design') @section('content')

{{ $title }}

{{ $title }}

{{ Form::open(['url' => route('tax_create'), 'method'=>'POST', 'name' => 'tax', 'id' => 'tax']) }}
{{ Form::label(__('lbl.title')) }} {{ Form::text('title', old('title'), ["class"=>"form-control","placeholder"=>"Title","id"=>"title","name"=>"title"]) }} @if ($errors->has('title')) @endif
{{ Form::label(__('lbl.current_rate')) }} {{ Form::text('amount', Input::old('amount'), ["class"=>"form-control numer_only","placeholder"=>"Amount","id"=>"amount","name"=>"amount"]) }} @if ($errors->has('amount')) @endif
{{ Form::label(__('lbl.rounding')) }} {{ Form::select('rounding', [""=>"---Select Status---", "MATH"=>__('lbl.math'),"CELLING"=>__('lbl.celling') ],Input::old('rounding'),["class"=>"form-control","id"=>"rounding","name"=>"rounding"]) }} @if ($errors->has('rounding')) @endif
{{ Form::label(__('lbl.agency')) }} {{ Form::select('agency', $agency, '',["class"=>"form-control select2","id"=>"agency","name"=>"agency"]) }} @if ($errors->has('agency')) @endif
{{ Form::label(__('lbl.status')) }} {{ Form::select('status', [""=>"---Select Status---", "1"=>"Active","0"=>"Inactive"],Input::old('status'),["class"=>"form-control","id"=>"status","name"=>"status"]) }} @if ($errors->has('status')) @endif
{{ Form::submit(__('lbl.submit'),["name"=>"submit","value"=>"submit","class"=>"btn btn-success btn-sm"]) }} {{ __('lbl.cancel') }}
{{ Form::close() }}
@endsection @section('pagescript') {!! Helper::pagejs(['js/backend/taxgroup/add_edit.js']) !!} @stop