{!! Form::open(['url' => action('DebitorLedgerController@update', $contact->id), 'class' => 'register_form', 'method' => 'post', 'id' => 'source_add_form' , 'files' => true]) !!}
CONTACT LEDGER FILE |
Account No . : |
{!! Form::text('account_no',$contact->account_no, ['class' => 'form-control', 'required', 'autofocus']); !!} |
MAINTENACE |
Ledger Type : |
{!! Form::select('ledger_type', ['1' => 'Creditor', '2' => 'Debitor', '3' => 'Both'], $contact->ledger_type, ['class' => 'form-control', 'placeholder' => 'Select Type', 'style'=>'margin-left:20px;width: 80% !important', 'required']); !!} |
Name Of Account : |
{!! Form::text('account_name', $contact->account_name, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important', 'required']); !!} |
Address : |
{!! Form::textarea('address', $contact->address, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important;margin-top:3px;margin-bottom:3px;', 'rows' => '3']); !!} |
Contact : |
{!! Form::text('contact', $contact->contact, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important']); !!} |
Phone / Fax : |
{!! Form::text('phone', $contact->phone, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important']); !!} |
Message : |
{!! Form::textarea('message', $contact->message, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important;margin-top:3px;margin-bottom:3px;', 'rows' => '3']); !!} |
VAT No. : |
{!! Form::text('vat_no', $contact->vat_no, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important']); !!} |
Status : |
{!! Form::select('status',['1' => 'Active', '0' => 'Inactive'], $contact->status, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important']); !!} |
Remarks : |
{!! Form::textarea('remark', $contact->remark, ['class' => 'form-control', 'style'=>'margin-left:20px;width: 80% !important']); !!} |
{!! Form::close() !!}
@endsection
@section('javascript')
@endsection