HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/ipsremont-demo/storage/framework/views/6454464a08c323ae9d1d110eed82da2d2348b4f1.php
<?php $attributes = $attributes->exceptProps([
'name',
'value',
'label',
'required',
'error',
'filter',
'maxDate' => '',
]); ?>
<?php foreach (array_filter(([
'name',
'value',
'label',
'required',
'error',
'filter',
'maxDate' => '',
]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
    $$__key = $$__key ?? $__value;
} ?>
<?php $__defined_vars = get_defined_vars(); ?>
<?php foreach ($attributes as $__key => $__value) {
    if (array_key_exists($__key, $__defined_vars)) unset($$__key);
} ?>
<?php unset($__defined_vars); ?>

<?php if(isset($filter) && $filter): ?>
<?php else: ?>
    <div class="form-group">
        <label for="<?php echo e($name); ?>"><?php echo app('translator')->get($label); ?> <?php if($required): ?> <span class="text-danger">*</span><?php endif; ?></label>
<?php endif; ?>
    <div class="input-group single-datepicker" id="<?php echo e($name); ?>"
         <?php if($maxDate && $maxDate == 'today'): ?> data-maxdate="<?php echo e(date('m/d/Y')); ?>"
         <?php else: ?> data-maxdate="<?php echo e($maxDate); ?>" <?php endif; ?>
    >
        <input type="text"
               name="<?php echo e($name); ?>"
               <?php echo e($attributes->merge(['class' => 'form-control' . ($error ? ' is-invalid' : '')])); ?>

               value="<?php echo e($value); ?>"

               <?php if($required): ?> required="required" <?php endif; ?>
        >
        <div class="input-group-append">
            <span class="input-group-text">
                <i class="la la-calendar-check-o"></i>
            </span>
        </div>

        <?php if($error): ?>
            <div class="invalid-feedback"><?php echo e($error); ?></div>
        <?php endif; ?>
    </div>

<?php if(isset($filter) && $filter): ?>
<?php else: ?>
    </div>
<?php endif; ?>
<?php /**PATH /var/www/ipsremont-demo/resources/views/components/input/date-single.blade.php ENDPATH**/ ?>