@extends('_version_02.commons.layouts.admin') @section('content') {!! Form::model($model, ['class'=>'form-horizontal']) !!} @include('_version_02.commons.layouts.partials._alert')
{{App\Language::trans('Tax Detail')}}

{!! Form::label('code', App\Language::trans('Code'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('code', null, ['class'=>'form-control','autofocus','required']) !!} {!!$errors->first('code', '')!!}
{!! Form::label('type', App\Language::trans('Type'), ['class'=>'control-label col-md-4']) !!}
{!! Form::select('type', App\Tax::type_combobox(), null, ['class'=>'form-control','required']) !!} {!!$errors->first('type', '')!!}
{!! Form::label('rate', App\Language::trans('Rate (%)'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('rate', null, ['class'=>'form-control','autofocus','required']) !!} {!!$errors->first('rate', '')!!}
{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-4']) !!}
{!!$errors->first('status', '')!!}
{!! Form::label('remark', App\Language::trans('Remark'), ['class'=>'control-label col-md-2']) !!}
{!! Form::textarea('remark', null, ['rows'=>'5','class'=>'form-control']) !!} {!!$errors->first('remark', '')!!}
@include('_version_02.commons.layouts.partials._form_floaring_footer_standard') {!! Form::close() !!} @endsection @section('script') @endsection