@extends('accounting::layouts.app') @section('title') {{ trans_choice('accounting::lang.edit', 1) }} {{ trans_choice('accounting::lang.account', 1) }} @endsection @section('content') @include('accounting::layouts.nav') @component('accounting::components.section_header') @slot('title') {{ trans_choice('accounting::general.accounting', 1) }} @endslot @slot('subtitle') {{ trans_choice('accounting::lang.edit', 1) }} {{ trans_choice('accounting::lang.account', 1) }} @endslot @endcomponent
@can('product.view')
@component('accounting::components.box') @slot('body')
{{ csrf_field() }}
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endslot @endcomponent
@endcan
@stop @section('javascript') @endsection