@extends('master.authMaster') @section('content')

Add Asset Brought Forward

@php $currentOrg = \App\Models\Organisation::current(); $orgId = $currentOrg ? $currentOrg->organisation_id : null; @endphp @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if (!$orgId)
Please select a current organisation first.
@endif
@error('accounting_year_id')
{{ $message }}
@enderror
@error('total_asset_amount')
{{ $message }}
@enderror
@error('transaction_date')
{{ $message }}
@enderror
Cancel
@endsection