@extends('layout.app') @section('title', 'Edit Bank Account') @push('header_script') @endpush @section('content')
{!! Form::open([ 'route' => ['bank-account.update', $bankAccountData->id], 'onsubmit' => 'BtnSubmit.disabled = true', 'class' => 'row g-3 needs-validation', 'method' => 'put', 'autocomplete' => 'off', 'files' => true ]) !!}
{{$errors->first('account_holder_name')}}
{{$errors->first('bank_name')}}
{{$errors->first('account_no')}}
{{$errors->first('ifsc_code')}}
{{$errors->first('branch')}}
{{$errors->first('remark')}}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush