⚝
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
/
resources
/
views
/
jobApplication
/
View File Name :
onboardCreate.blade.php
{{ Form::open(['route' => ['job.on.board.store', $id], 'method' => 'post']) }} <div class="modal-body"> <div class="row"> @if ($id == 0) <div class="form-group col-md-12"> {{ Form::label('application', __('Interviewer'), ['class' => 'col-form-label']) }} {{ Form::select('application', $applications, null, ['class' => 'form-control select2', 'required' => 'required']) }} </div> @endif <div class="form-group col-md-12"> {!! Form::label('joining_date', __('Joining Date'), ['class' => 'col-form-label']) !!} {!! Form::date('joining_date', null, ['class' => 'form-control ','autocomplete'=>'off']) !!} </div> <div class="form-group col-md-6"> {!! Form::label('days_of_week', __('Days Of Week'), ['class' => 'col-form-label']) !!} {!! Form::number('days_of_week', null, ['class' => 'form-control ','autocomplete'=>'off','min'=>'0']) !!} </div> <div class="form-group col-md-6"> {!! Form::label('salary', __('Salary'), ['class' => 'col-form-label']) !!} {!! Form::number('salary', null, ['class' => 'form-control ','autocomplete'=>'off','min'=>'0']) !!} </div> <div class="form-group col-md-6"> {{ Form::label('salary_type', __('Salary Type'), ['class' => 'col-form-label']) }} {{ Form::select('salary_type', $salary_type, null, ['class' => 'form-control select']) }} </div> <div class="form-group col-md-6"> {{ Form::label('salary_duration', __('Salary Duration'), ['class' => 'col-form-label']) }} {{ Form::select('salary_duration', $salary_duration, null, ['class' => 'form-control select']) }} </div> <div class="form-group col-md-6"> {{ Form::label('job_type', __('Job Type'), ['class' => 'col-form-label']) }} {{ Form::select('job_type', $job_type, null, ['class' => 'form-control select']) }} </div> <div class="form-group col-md-6"> {{ Form::label('status', __('Status'), ['class' => 'col-form-label']) }} {{ Form::select('status', $status, null, ['class' => 'form-control select']) }} </div> </div> </div> <div class="modal-footer"> <input type="button" value="Cancel" class="btn btn-light" data-bs-dismiss="modal"> <input type="submit" value="{{ __('Create') }}" class="btn btn-primary"> </div> {{ Form::close() }}