@extends('layouts.app') @section('title', __('Credit Management')) @section('content') @lang('Credit Management') @lang('List') @if (session('success')) {{ session('success') }} @endif @if (session('error')) {{ session('error') }} @endif {!! Form::open(['url' => action([\App\Http\Controllers\CreditManagementController::class, 'store']), 'method' => 'post', 'id' => 'add_credit_mangement_form', 'files' => true ]) !!} Available Balance : 00.00 Pending Balance : 00.00 Bussiness Location : * {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2','id'=>'location_id', 'style' => 'width:100%', 'placeholder' => __('Select Location'),'required']); !!} {{--- Loaction details Table---}} Date Time : * Payment Type : * Select Type Credit Debit Amount : * Payment Method : * Select Method Cash Cheque Demand Draft Bank Transfer Other Paid By : Screenshot Image : Remarks : * @lang('Submit') {!! Form::close() !!} @endsection @section('javascript') @endsection