@extends('layouts.app') @section('title', 'Edit Account') @include('inventory.accounting.partials.styles') @section('content')

Edit Account

{{ $account->code }} — {{ strtoupper($account->type) }}

Back
@include('inventory.accounting.partials.sub-nav') @if($errors->any())
{{ $errors->first() }}
@endif
@csrf @method('PUT')
@if(! $account->is_system && ! $account->lines()->exists()) @csrf @method('DELETE') @endif
@endsection