@extends('admin::layouts.content') @section('page_title') {{ __('admin::app.settings.tax-categories.edit.title') }} @stop @section('content')
@csrf() @method('PUT')
@{{ errors.first('code') }}
@{{ errors.first('name') }}
@{{ errors.first('description') }}
@php $selectedOptions = old('taxrates') ?: $taxCategory->tax_rates()->pluck('tax_rates.id')->toArray() @endphp
@inject('taxRates', 'Webkul\Tax\Repositories\TaxRateRepository') @{{ errors.first('taxrates[]') }}
@stop