D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
storage
/
framework
/
views
/
Filename :
ee221b81ff242559eab4f65d21e9386b.php
back
Copy
<div id="edit_postal_dispatch_modal" class="modal fade" role="dialog" tabindex="-1" aria-hidden="true"> <div class="modal-dialog modal-lg"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <h2><?php echo e(__('messages.postal.edit_dispatch')); ?></h2> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <?php echo e(Form::open(['id'=>'editDispatchForm','class'=>'editPostalForm','files' => true])); ?> <div class="modal-body"> <div class="alert alert-danger d-none hide editValidationErrorsBox1" id="editDispatchErrorsBox1"></div> <div class="row"> <?php echo e(Form::hidden('id',null,['id'=>'editDispatchId'])); ?> <div class="form-group col-sm-6 mb-5"> <?php echo e(Form::label('To Title',__('messages.postal.to_title').':', ['class' => 'form-label'])); ?> <span class="required"></span> <?php echo e(Form::text('to_title', null, ['class' => 'form-control editToTitle','id' => 'editDispatchToTitle','required'])); ?> </div> <div class="form-group col-sm-6 mb-5"> <?php echo e(Form::label('Reference Number',__('messages.postal.reference_no').':', ['class' => 'form-label'])); ?> <?php echo e(Form::text('reference_no', null, ['class' => 'form-control editReferenceNumber','id' => 'editDispatchReferenceNumber'])); ?> </div> <div class="form-group col-sm-6 mb-5"> <?php echo e(Form::label('date', __('messages.postal.date').':', ['class' => 'form-label'])); ?> <?php echo e(Form::text('date', null, ['class' => (getLoggedInUser()->thememode ? 'bg-light editPostalDate form-control' : 'bg-white editPostalDate form-control'),'id' => 'editDispatchDate', 'autocomplete' => 'off'])); ?> </div> <div class="form-group col-sm-6 mb-5"> <?php echo e(Form::label('From Title',__('messages.postal.from_title').':', ['class' => 'form-label'])); ?> <?php echo e(Form::text('from_title', null, ['class' => 'form-control editFromTitle','id' => 'editDispatchFromTitle'])); ?> </div> <div class="form-group col-md-8 mb-5"> <div class="row2" io-image-input="true"> <?php echo e(Form::label('image',__('messages.document.attachment').(':'), ['class' => 'form-label'])); ?> <div class="d-block"> <?php $style = 'style='; $background = 'background-image:'; ?> <div class="image-picker"> <div class="image editPreviewImage previewImage" id="editDispatchPreviewImage" <?php echo e($style); ?>"<?php echo e($background); ?> url(<?php echo e(asset('assets/img/default_image.jpg')); ?>"> <span class="picker-edit rounded-circle text-gray-500 fs-small" title="<?php echo e(__('messages.common.profile')); ?>"> <label> <i class="fa-solid fa-pen" id="profileImageIcon"></i> <input type="file" id="editDispatchAttachment" name="attachment" class="image-upload d-none editAttachment document-file" accept=".png, .jpg, .jpeg, .gif"/> <input type="hidden" name="avatar_remove"/> </label> </span> </div> </div> </div> </div> </div> <div class="form-group col-sm-12 mb-5"> <?php echo e(Form::label('Address', __('messages.postal.address').':', ['class' => 'form-label'])); ?> <?php echo e(Form::textarea('address', null, ['class' => 'form-control editAddress','id' => 'editDispatchAddress', 'rows' => 4])); ?> </div> </div> </div> <div class="modal-footer pt-0"> <?php echo e(Form::button( __('messages.common.save'), ['type'=>'submit','class' => 'btn btn-primary m-0 btnEditSave','id'=>'editDispatchSave','data-loading-text'=>"<span class='spinner-border spinner-border-sm'></span> Processing..."])); ?> <button type="button" aria-label="Close" class="btn btn-secondary" data-bs-dismiss="modal"><?php echo e(__('messages.common.cancel')); ?></button> </div> <?php echo e(Form::close()); ?> </div> </div> </div> <?php /**PATH /home/u827283894/domains/w-manage.org/public_html/hms/resources/views/postals/dispatches/edit_modal.blade.php ENDPATH**/ ?>