@php $layout = ($checkBankCreate == "firstTime") ? 'layout.onetime-app' : 'layout.app'; @endphp @extends($layout) @section('title','Create Bank Account') @push('header_script') @endpush @section('content') @if($checkBankCreate != "firstTime")
@endif
@if($checkBankCreate == "firstTime")

BANK DETAILS

Please fill bank details.

@endif {!! Form::open(['route' => ['bank-account.store'], 'class'=>'row g-3 needs-validation', 'onsubmit'=>'BtnSubmit.disabled = true', 'method' => 'post', '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')}}
@if($checkBankCreate == "firstTime") Skip @endif
{!! Form::close() !!}
@endsection @push('footer_script') @endpush