⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
storage
/
framework
/
views
/
View File Name :
a70c86e9b9bb3ac94e57514381852a08.php
<?php echo e(Form::open(array('url' => 'revenue','enctype' => 'multipart/form-data'))); ?> <div class="modal-body"> <div class="row"> <div class="form-group col-md-6"> <?php echo e(Form::label('date', __('Date'),['class'=>'form-label'])); ?> <?php echo e(Form::date('date',null,array('class'=>'form-control','required'=>'required'))); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('amount', __('Amount'),['class'=>'form-label'])); ?> <?php echo e(Form::number('amount', '', array('class' => 'form-control','required'=>'required','step'=>'0.01' , 'placeholder'=>__('Enter Amount')))); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('account_id', __('Account'),['class'=>'form-label'])); ?> <?php echo e(Form::select('account_id',$accounts,null, array('class' => 'form-control select','required'=>'required'))); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('customer_id', __('Customer'),['class'=>'form-label'])); ?> <?php echo e(Form::select('customer_id', $customers,null, array('class' => 'form-control select','required'=>'required'))); ?> </div> <div class="form-group col-md-12"> <?php echo e(Form::label('description', __('Description'),['class'=>'form-label'])); ?> <?php echo e(Form::textarea('description', '', array('class' => 'form-control','rows'=>3 , 'placeholder'=>__('Enter Description')))); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('category_id', __('Category'),['class'=>'form-label'])); ?> <?php echo e(Form::select('category_id', $categories,null, array('class' => 'form-control select','required'=>'required'))); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('reference', __('Reference'),['class'=>'form-label'])); ?> <?php echo e(Form::text('reference', '', array('class' => 'form-control' , 'placeholder'=>__('Enter Reference')))); ?> </div> <div class="form-group col-md-6"> <?php echo e(Form::label('add_receipt',__('Payment Receipt'),['class' => 'col-form-label'])); ?> <?php echo e(Form::file('add_receipt',array('class'=>'form-control', 'id'=>'files'))); ?> <img id="image" class="mt-3" style="width:25%;"/> </div> </div> </div> <div class="modal-footer"> <input type="button" value="<?php echo e(__('Cancel')); ?>" class="btn btn-light" data-bs-dismiss="modal"> <input type="submit" value="<?php echo e(__('Create')); ?>" class="btn btn-primary"> </div> <?php echo e(Form::close()); ?> <script> document.getElementById('files').onchange = function () { var src = URL.createObjectURL(this.files[0]) document.getElementById('image').src = src } </script> <?php /**PATH /var/www/crm/resources/views/revenue/create.blade.php ENDPATH**/ ?>