HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //var/www/ivs.kaunokolegija.lt/laravel/storage/framework/views/208cf0878db9a96388ce2c88941d61f3.php
<div class="form-group">
    <label class="required" for="name"><?php echo e(trans('cruds.student.fields.name')); ?></label>
    <input class="form-control <?php echo e($errors->has('name') ? 'is-invalid' : ''); ?>" type="text" name="name" id="name" value="<?php echo e(old('name', '')); ?>" required>
    <?php if($errors->has('name')): ?>
        <span class="text-danger"><?php echo e($errors->first('name')); ?></span>
    <?php endif; ?>
    <span class="help-block"><?php echo e(trans('cruds.student.fields.name_helper')); ?></span>
</div>
<div class="form-group">
    <label class="required" for="email"><?php echo e(trans('cruds.student.fields.email')); ?></label>
    <input class="form-control <?php echo e($errors->has('email') ? 'is-invalid' : ''); ?>" type="email" name="email" id="email" value="<?php echo e(old('email')); ?>" required>
    <?php if($errors->has('email')): ?>
        <span class="text-danger"><?php echo e($errors->first('email')); ?></span>
    <?php endif; ?>
    <span class="help-block"><?php echo e(trans('cruds.student.fields.email_helper')); ?></span>
</div>
<div class="form-group">
    <label for="phone"><?php echo e(trans('cruds.student.fields.phone')); ?></label>
    <input class="form-control <?php echo e($errors->has('phone') ? 'is-invalid' : ''); ?>" type="text" name="phone" id="phone" value="<?php echo e(old('phone', '')); ?>">
    <?php if($errors->has('phone')): ?>
        <span class="text-danger"><?php echo e($errors->first('phone')); ?></span>
    <?php endif; ?>
    <span class="help-block"><?php echo e(trans('cruds.student.fields.phone_helper')); ?></span>
</div>
<div class="form-group">
    <div class="form-check <?php echo e($errors->has('ismain') ? 'is-invalid' : ''); ?>">
        <input type="hidden" name="ismain" value="0">
        <input class="form-check-input" type="checkbox" name="ismain" id="ismain" value="1" <?php echo e(old('ismain', 0) == 1 ? 'checked' : ''); ?>>
        <label class="form-check-label" for="ismain"><?php echo e(trans('cruds.student.fields.ismain')); ?></label>
    </div>
    <?php if($errors->has('ismain')): ?>
        <span class="text-danger"><?php echo e($errors->first('ismain')); ?></span>
    <?php endif; ?>
    <span class="help-block"><?php echo e(trans('cruds.student.fields.ismain_helper')); ?></span>
</div>
<div class="form-group">
    <div class="form-check <?php echo e($errors->has('interested_in_research') ? 'is-invalid' : ''); ?>">
        <input type="hidden" name="interested_in_research" value="0">
        <input class="form-check-input" type="checkbox" name="interested_in_research" id="interested_in_research" value="1" <?php echo e(old('interested_in_research', 0) == 1 ? 'checked' : ''); ?>>
        <label class="form-check-label" for="interested_in_research"><?php echo e(trans('cruds.student.fields.interested_in_research')); ?></label>
    </div>
    <?php if($errors->has('interested_in_research')): ?>
        <span class="text-danger"><?php echo e($errors->first('interested_in_research')); ?></span>
    <?php endif; ?>
    <span class="help-block"><?php echo e(trans('cruds.student.fields.interested_in_research_helper')); ?></span>
</div>
<div class="form-group">
    <label for="areas_of_interests"><?php echo e(trans('cruds.student.fields.areas_of_interest')); ?></label>
    <div style="padding-bottom: 4px">
        <span class="btn btn-info btn-xs select-all" style="border-radius: 0"><?php echo e(trans('global.select_all')); ?></span>
        <span class="btn btn-info btn-xs deselect-all" style="border-radius: 0"><?php echo e(trans('global.deselect_all')); ?></span>
    </div>
    <div class="d-flex align-items-center">
        <select class="form-control select2 <?php echo e($errors->has('areas_of_interests') ? 'is-invalid' : ''); ?>" name="areas_of_interests[]" id="areas_of_interests" multiple>
            <?php $__currentLoopData = $areas_of_interests; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $areas_of_interest): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                <option value="<?php echo e($id); ?>" <?php echo e(in_array($id, old('areas_of_interests', [])) ? 'selected' : ''); ?>><?php echo e($areas_of_interest); ?></option>
            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
        </select>
        <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('area_of_interest_create')): ?>
            <?php if($nameModal): ?>   
            <?php if (isset($component)) { $__componentOriginal863456d2b7044be7ea705fd9162e9dfc = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal863456d2b7044be7ea705fd9162e9dfc = $attributes; } ?>
<?php $component = App\View\Components\Modal\CreateNameModal::resolve(['compName' => 'AreaOfInterest','title' => ''.e(trans('global.add')).'','name' => 'name','label' => ''.e(trans('cruds.areaOfInterest.fields.name')).'','route' => ''.e(route('admin.area-of-interests.store')).''] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('modal.create-name-modal'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Modal\CreateNameModal::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal863456d2b7044be7ea705fd9162e9dfc)): ?>
<?php $attributes = $__attributesOriginal863456d2b7044be7ea705fd9162e9dfc; ?>
<?php unset($__attributesOriginal863456d2b7044be7ea705fd9162e9dfc); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal863456d2b7044be7ea705fd9162e9dfc)): ?>
<?php $component = $__componentOriginal863456d2b7044be7ea705fd9162e9dfc; ?>
<?php unset($__componentOriginal863456d2b7044be7ea705fd9162e9dfc); ?>
<?php endif; ?>
            <?php endif; ?>
            <?php if($modalBtn): ?>
            <button type="button" data-select-id="areas_of_interests" class="btn btn-outline-primary ms-2" id="openAreaOfInterestModal">
                <i class="fa fa-plus"></i>
            </button>
            <?php endif; ?>
        <?php endif; ?>
        <?php if($errors->has('areas_of_interests')): ?>
            <span class="text-danger"><?php echo e($errors->first('areas_of_interests')); ?></span>
        <?php endif; ?>
        <span class="help-block"><?php echo e(trans('cruds.student.fields.areas_of_interest_helper')); ?></span>
    </div>
</div>
<?php if (isset($component)) { $__componentOriginal0719bdd33bbc8df585d82deca27b43a6 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6 = $attributes; } ?>
<?php $component = App\View\Components\Form\Textarea::resolve(['label' => ''.e(trans('global.additional_info_1')).'','name' => 'additional_field_1'] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('form.textarea'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Form\Textarea::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $attributes = $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $component = $__componentOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($component)) { $__componentOriginal0719bdd33bbc8df585d82deca27b43a6 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6 = $attributes; } ?>
<?php $component = App\View\Components\Form\Textarea::resolve(['label' => ''.e(trans('global.additional_info_2')).'','name' => 'additional_field_2'] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('form.textarea'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Form\Textarea::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $attributes = $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $component = $__componentOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($component)) { $__componentOriginal0719bdd33bbc8df585d82deca27b43a6 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6 = $attributes; } ?>
<?php $component = App\View\Components\Form\Textarea::resolve(['label' => ''.e(trans('global.additional_info_3')).'','name' => 'additional_field_3'] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('form.textarea'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Form\Textarea::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $attributes = $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $component = $__componentOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($component)) { $__componentOriginal0719bdd33bbc8df585d82deca27b43a6 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6 = $attributes; } ?>
<?php $component = App\View\Components\Form\Textarea::resolve(['label' => ''.e(trans('global.additional_info_4')).'','name' => 'additional_field_4'] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('form.textarea'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Form\Textarea::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $attributes = $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $component = $__componentOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($component)) { $__componentOriginal0719bdd33bbc8df585d82deca27b43a6 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6 = $attributes; } ?>
<?php $component = App\View\Components\Form\Textarea::resolve(['label' => ''.e(trans('global.additional_info_5')).'','name' => 'additional_field_5'] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('form.textarea'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Form\Textarea::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $attributes = $__attributesOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__attributesOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6)): ?>
<?php $component = $__componentOriginal0719bdd33bbc8df585d82deca27b43a6; ?>
<?php unset($__componentOriginal0719bdd33bbc8df585d82deca27b43a6); ?>
<?php endif; ?><?php /**PATH /var/www/ivs.kaunokolegija.lt/laravel/resources/views/admin/students/students-fields.blade.php ENDPATH**/ ?>