@extends('layout.app') @section('title','Edit Ledger Group') @push('header_script') @endpush @section('content')
{!! Form::open(['route' => ['account-ledger.update',$accountLedgerData->id], 'onsubmit'=>'BtnSubmit.disabled = true', 'class'=>'row g-3 needs-validation', 'method' => 'put', 'autocomplete'=>'off']) !!}
{!! Form::select('account_group_id', [''=>'--Select--']+$accountGroup, $accountLedgerData->account_group_id, ['class'=>'form-control select2','id'=>'account_group_id','required']) !!}
{{$errors->first('account_group_id')}}
{{$errors->first('ledger_name')}}
{{$errors->first('date')}}
{!! Form::select("is_edit", ['yes'=>'Yes','no'=>'No'], $accountLedgerData->is_edit, ['class'=>'form-control','required'] ) !!}
{{$errors->first('is_edit')}}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush