File: //var/www/ivs.kaunokolegija.lt/laravel/storage/framework/views/c566fed6ad5a7e9783eae150991355ad.php
<div class="form-group">
<label class="required" for="name"><?php echo e(trans('cruds.alumny.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.alumny.fields.name_helper')); ?></span>
</div>
<div class="form-group">
<label class="required" for="graduated"><?php echo e(trans('cruds.alumny.fields.graduated')); ?></label>
<input class="form-control date <?php echo e($errors->has('graduated') ? 'is-invalid' : ''); ?>" type="text" name="graduated" id="graduated" value="<?php echo e(old('graduated')); ?>" required>
<?php if($errors->has('graduated')): ?>
<span class="text-danger"><?php echo e($errors->first('graduated')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.alumny.fields.graduated_helper')); ?></span>
</div>
<div class="form-group">
<label class="required" for="faculties"><?php echo e(trans('cruds.alumny.fields.faculty')); ?></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('faculties') ? 'is-invalid' : ''); ?>" name="faculties[]" id="faculties" multiple required>
<?php $__currentLoopData = $faculties; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $faculty): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($id); ?>" <?php echo e(in_array($id, old('faculties', [])) ? 'selected' : ''); ?>><?php echo e($faculty); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('department_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' => 'Department','name' => 'name','label' => ''.e(trans('cruds.department.fields.name')).'','route' => ''.e(route('admin.departments.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="faculties" class="btn btn-outline-primary ms-2" id="openDepartmentModal">
<i class="fa fa-plus"></i>
</button>
<?php endif; ?>
<?php endif; ?>
<?php if($errors->has('faculties')): ?>
<span class="text-danger"><?php echo e($errors->first('faculties')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.alumny.fields.faculty_helper')); ?></span>
</div>
</div>
<div class="form-group">
<label for="cathedrals"><?php echo e(trans('cruds.alumny.fields.cathedral')); ?></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('cathedrals') ? 'is-invalid' : ''); ?>" name="cathedrals[]" id="cathedrals" multiple>
<?php $__currentLoopData = $cathedrals; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $cathedral): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($id); ?>" <?php echo e(in_array($id, old('cathedrals', [])) ? 'selected' : ''); ?>><?php echo e($cathedral); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
<?php if($errors->has('cathedrals')): ?>
<span class="text-danger"><?php echo e($errors->first('cathedrals')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.alumny.fields.cathedral_helper')); ?></span>
</div>
</div>
<div class="form-group">
<label class="required" for="study_programs"><?php echo e(trans('cruds.alumny.fields.study_program')); ?></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('study_programs') ? 'is-invalid' : ''); ?>" name="study_programs[]" id="study_programs" multiple required>
<?php $__currentLoopData = $study_programs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $study_program): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($study_program->id); ?>" <?php echo e(in_array($study_program->id, old('study_programs', [])) ? 'selected' : ''); ?>><?php echo e($study_program->name); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('study_program_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' => 'StudyProgram','title' => ''.e(trans('global.add')).'','name' => 'name','label' => ''.e(trans('cruds.studyProgram.fields.name')).'','route' => ''.e(route('admin.study-programs.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="study_programs" class="btn btn-outline-primary ms-2" id="openStudyProgramModal">
<i class="fa fa-plus"></i>
</button>
<?php endif; ?>
<?php endif; ?>
<?php if($errors->has('study_programs')): ?>
<span class="text-danger"><?php echo e($errors->first('study_programs')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.alumny.fields.study_program_helper')); ?></span>
</div>
</div>
<div class="form-group">
<label for="alumny_area_of_cooperations"><?php echo e(trans('cruds.alumny.fields.alumny_area_of_cooperations')); ?></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('alumnyareaofcooperations') ? 'is-invalid' : ''); ?>" name="alumnyareaofcooperations[]" id="alumnyareaofcooperations" multiple>
<?php $__currentLoopData = $alumnyareaofcooperations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $alumny_area_of_cooperation): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($alumny_area_of_cooperation->id); ?>" <?php echo e(in_array($alumny_area_of_cooperation->id, old('alumnyareaofcooperations', [])) ? 'selected' : ''); ?>><?php echo e($alumny_area_of_cooperation->name); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('alumny_area_of_cooperations_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' => 'AlumnyAreaOfCooperation','title' => ''.e(trans('global.add')).'','name' => 'name','label' => ''.e(trans('cruds.alumnyAreaOfCooperation.fields.name')).'','route' => ''.e(route('admin.alumny-area-of-cooperations.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="alumnyareaofcooperations" class="btn btn-outline-primary ms-2" id="openAlumnyAreaOfCooperationModal">
<i class="fa fa-plus"></i>
</button>
<?php endif; ?>
<?php endif; ?>
<?php if($errors->has('alumnyareaofcooperations')): ?>
<span class="text-danger"><?php echo e($errors->first('alumnyareaofcooperations')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.alumny.fields.alumny_area_of_cooperations_helper')); ?></span>
</div>
</div>
<div class="form-group">
<label for="workplaces"><?php echo e(trans('cruds.alumny.fields.workplace')); ?></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('workplaces') ? 'is-invalid' : ''); ?>" name="workplaces[]" id="workplaces" multiple>
<?php $__currentLoopData = $workplaces; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $workplace): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($id); ?>" <?php echo e(in_array($id, old('workplaces', [])) ? 'selected' : ''); ?>><?php echo e($workplace); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('alumni_company_create')): ?>
<?php if($useModal): ?>
<?php echo $__env->make('layouts.form_modal', ['fieldsLink' => 'admin.alumniCompanies.alumni-companies-fields', 'compName' => 'AlumniCompany', 'route' => route('admin.alumni-companies.store'), 'title' => trans('global.create'), 'useModal' => false, 'nameModal' => true, 'modalBtn' => true], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<button class="btn btn-outline-primary ms-2" data-select-id="workplaces" id="openAlumniCompanyModal" >
<i class="fa fa-plus"></i>
</button>
<?php endif; ?>
<?php endif; ?>
<?php if($errors->has('workplaces')): ?>
<span class="text-danger"><?php echo e($errors->first('workplaces')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.alumny.fields.workplace_helper')); ?></span>
</div>
</div>
<div class="form-group">
<label for="positions"><?php echo e(trans('cruds.alumny.fields.position')); ?></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>
<select class="form-control select2 <?php echo e($errors->has('positions') ? 'is-invalid' : ''); ?>" name="positions[]" id="positions" multiple>
<?php $__currentLoopData = $positions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $position): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($position->id); ?>" <?php echo e(in_array($position->id, old('positions', [])) ? 'selected' : ''); ?>><?php echo e($position->name); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
<?php if($errors->has('positions')): ?>
<span class="text-danger"><?php echo e($errors->first('positions')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.alumny.fields.position_helper')); ?></span>
</div>
<div class="form-group">
<label class="required" for="email"><?php echo e(trans('cruds.alumny.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.alumny.fields.email_helper')); ?></span>
</div>
<div class="form-group">
<label for="phone"><?php echo e(trans('cruds.alumny.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.alumny.fields.phone_helper')); ?></span>
</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/alumnies/alumnies-fields.blade.php ENDPATH**/ ?>