@extends('admin.layouts.layouts') @section('title', 'Create | Investment') @section('page-css') @endsection @section('content')
{!! Form::open([ 'route' => 'investment.store', 'method' => 'POST', 'id' => 'investment_form', 'files' => true, ]) !!} @csrf
{{-- Basic Details --}}
{{ $errors->first('type') }}
{{ $errors->first('sub_type') }}
{{ $errors->first('name') }}

Payable Bank

{{ $errors->first('bank_name') }}
{{ $errors->first('account_no') }}
{{ $errors->first('ifsc_code') }}
{{--
{{ $errors->first('blank_cheque') }}
{{ $errors->first('cheque_number') }}
--}}

{{ $errors->first('bank_id') }}
{{ $errors->first('receive_date') }}
{{ $errors->first('payment_type') }}
{{ $errors->first('amount') }}
{{ $errors->first('charges') }}
{{ $errors->first('credited_amount') }}
%
{{ $errors->first('payable_amount') }}
{{ $errors->first('condition') }}
{{ Form::close() }}
@endsection @section('page-js') @endsection