@extends('layouts.admin') @section('title', trans('general.title.new', ['type' => trans_choice('general.tax_rates', 1)])) @section('content')
{!! Form::open(['url' => 'settings/taxes', 'role' => 'form', 'class' => 'form-loading-button']) !!}
{{ Form::textGroup('name', trans('general.name'), 'id-card-o') }} {{ Form::textGroup('rate', trans('taxes.rate'), 'percent') }} {{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, null, []) }} {{ Form::radioGroup('enabled', trans('general.enabled')) }}
{!! Form::close() !!}
@endsection @push('scripts') @endpush