@if(Auth::check() && !isset($job_detail))
{!! Form::label('date_of_application',trans('messages.date_of').' '.trans('messages.application'),['class'=>'required']) !!}
{!! Form::label('assignment',trans('messages.assignment'),[]) !!} {!! Form::select('assignment',$locations,isset($job_application) ? $job_application->applicant_site : '',['class'=>'form-control show-tick','title'=>trans('messages.select_one')]) !!}
{!! Form::label('source',trans('messages.application').' '.trans('messages.source'),[]) !!} {!! Form::select('source',config('lists.job_application_source_89'),isset($job_application) ? $job_application->source : '',['class'=>'form-control show-tick','title'=>trans('messages.select_one')]) !!}
{!! Form::hidden('job_id',isset($job) ? $job->id : '') !!}
{{-- Get custom fields ONLY for edit --}} @if(config('config.enable_custom_field')) {{ getCustomFields('job-application-edit-form',$custom_edit_values) }} @endif
@else @if(in_array(env('COMPANY_ID'), config('constant.custom_job_application'))) {!! Form::hidden('job_id',isset($job) ? $job->id : '') !!} @else
{!! Form::label('job_id',trans('messages.job').' '.trans('messages.title'),['class'=>'required']) !!} {!! Form::select('job_id',$jobs,isset($job_application) ? $job_application->job_id : (isset($job) ? $job->id : ''),['class'=>'form-control show-tick','title'=>trans('messages.select_one')]) !!}
@endif @endif @if(!isset($job_detail))

Personal Details

{!! Form::label('first_name',trans('messages.name'),['class'=>'required']) !!}
{!! Form::label('gender',trans('messages.gender'),['class'=>'required']) !!}
@foreach(config('lists.gender') as $gender) gender == $gender) ? 'checked' : ''}}> {{trans('messages.'.$gender)}}   @endforeach
{!! Form::label('email',trans('messages.email'),[]) !!}
{!! Form::label('date_of_birth',trans('messages.date_of').' '.trans('messages.birth'),['class'=>'required']) !!} {!! Form::date('date_of_birth',null,['class' => 'form-control', 'max' => '2099-12-31']) !!}
{!! Form::label('address_line_1',trans('messages.address'),['class'=>'required']) !!} {!! Form::input('text','address_line_1',isset($job_application) ? $job_application->address_line_1 : '',['class'=>'form-control','placeholder'=>trans('messages.address')]) !!}
{!! Form::label('zipcode',trans('messages.zipcode'),['class'=>'required']) !!} {!! Form::input('text','zipcode',isset($job_application) ? $job_application->zipcode : '',['class'=>'form-control','placeholder'=>trans('messages.zipcode')]) !!}
{!! Form::label('primary_contact_number','Tel (Handphone)',['class'=>'required']) !!}
{!! Form::label('secondary_contact_number','Tel (Home)',[]) !!}
{{-- Uses Job Application City field to store Position Applied --}} {!! Form::label('position_applied','Position Applied',['class'=>'required']) !!} {!! Form::select('position_applied',[ 'Security Officer' => 'Security Officer', 'Senior Security Officer' => 'Senior Security Officer', 'Security Supervisor' => 'Security Supervisor', 'Senior Security Supervisor' => 'Senior Security Supervisor', 'Chief Security Officer' => 'Chief Security Officer', 'Security Executive' => 'Security Executive', 'Operations Executive' => 'Operations Executive', 'Operations Manager' => 'Operations Manager', 'Receptionist' => 'Receptionist', 'Others' => 'Others' ],isset($job_application->city) ? $job_application->city : '',['class'=>'form-control input-xlarge show-tick','title' => trans('messages.select_one'),'id'=>'position_applied','onchange'=>'showFields(this)'])!!}
{{-- Uses Job Application State field to store Position Others --}} {!! Form::label('position_text',' ',[]) !!} @if(Auth::check() && !isset($job_detail))
{!! Form::input('text','position_text',isset($job_application->state) ? $job_application->state : '',['class'=>'form-control','placeholder'=>'Please Specify']) !!}
@else @endif

@if(config('config.enable_custom_field')) {{ getCustomFields('job-application-form',$custom_field_values) }}
@endif

Education & Professional Training

{{-- Row 1 --}}
{!! Form::label('edu_from_1',trans('messages.from'),['class'=>'required']) !!}
{!! Form::selectMonth('edu_from_1_mth',!empty($past_education[0]->from) ? getMonthNumber(\Carbon\Carbon::parse($past_education[0]->from)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('edu_from_1_yr',1940,\Carbon\Carbon::now()->year,!empty($past_education[0]->from) ? \Carbon\Carbon::parse($past_education[0]->from)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('edu_from_1','') !!}
{!! Form::label('edu_to_1',trans('messages.to'),['class'=>'required']) !!}
{!! Form::selectMonth('edu_to_1_mth',!empty($past_education[0]->to) ? getMonthNumber(\Carbon\Carbon::parse($past_education[0]->to)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('edu_to_1_yr',1940,\Carbon\Carbon::now()->year,!empty($past_education[0]->to) ? \Carbon\Carbon::parse($past_education[0]->to)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('edu_to_1','') !!}
{!! Form::label('institute_1',trans('messages.institute').' '.trans('messages.name'),['class'=>'required']) !!} {!! Form::input('text','institute_1',isset($past_education[0]->institution) ? $past_education[0]->institution : '',['class'=>'form-control','placeholder'=>trans('messages.institute').' '.trans('messages.name')]) !!}
{!! Form::label('education_level_1',trans('messages.education').' '.trans('messages.level'),['class'=>'required']) !!} {!! Form::select('education_level_1',$education_levels,isset($past_education[0]->level) ? $past_education[0]->level : '',['class'=>'form-control input-xlarge show-tick','title' => trans('messages.select_one')]) !!}
{{-- Row 2 --}}
{!! Form::label('edu_from_2',trans('messages.from'),[]) !!}
{!! Form::selectMonth('edu_from_2_mth',!empty($past_education[1]->from) ? getMonthNumber(\Carbon\Carbon::parse($past_education[1]->from)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('edu_from_2_yr',1940,\Carbon\Carbon::now()->year,!empty($past_education[1]->from) ? \Carbon\Carbon::parse($past_education[1]->from)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('edu_from_2','') !!}
{!! Form::label('edu_to_2',trans('messages.to'),[]) !!}
{!! Form::selectMonth('edu_to_2_mth',!empty($past_education[1]->to) ? getMonthNumber(\Carbon\Carbon::parse($past_education[1]->to)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('edu_to_2_yr',1940,\Carbon\Carbon::now()->year,!empty($past_education[1]->to) ? \Carbon\Carbon::parse($past_education[1]->to)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('edu_to_2','') !!}
{!! Form::label('institute_2',trans('messages.institute').' '.trans('messages.name')) !!} {!! Form::input('text','institute_2',isset($past_education[1]->institution) ? $past_education[1]->institution : '',['class'=>'form-control','placeholder'=>trans('messages.institute').' '.trans('messages.name')]) !!}
{!! Form::label('education_level_2',trans('messages.education').' '.trans('messages.level'),[]) !!} {!! Form::select('education_level_2',$education_levels,isset($past_education[1]->level) ? $past_education[1]->level : '',['class'=>'form-control input-xlarge show-tick','title' => trans('messages.select_one')]) !!}

Working Experience

{!! Form::label('work_from_1',trans('messages.from'),['class'=>'required']) !!}
{!! Form::selectMonth('work_from_1_mth',!empty($past_work_exp[0]->from) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[0]->from)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_from_1_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[0]->from) ? \Carbon\Carbon::parse($past_work_exp[0]->from)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_from_1','') !!}
{!! Form::label('work_to_1',trans('messages.to'),['class'=>'required']) !!}
{!! Form::selectMonth('work_to_1_mth',!empty($past_work_exp[0]->to) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[0]->to)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_to_1_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[0]->to) ? \Carbon\Carbon::parse($past_work_exp[0]->to)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_to_1','') !!}
{!! Form::label('company_1',trans('messages.company'),['class'=>'required']) !!} {!! Form::input('text','company_1',isset($past_work_exp[0]->company) ? $past_work_exp[0]->company : '',['class'=>'form-control','placeholder'=>trans('messages.company').' '.trans('messages.name')]) !!}
{!! Form::label('site_1',trans('messages.location'),['class'=>'required']) !!} {!! Form::input('text','site_1',isset($past_work_exp[0]->site) ? $past_work_exp[0]->site : '',['class'=>'form-control','placeholder'=>trans('messages.location')]) !!}
{!! Form::label('job_title_1',trans('messages.position'),['class'=>'required']) !!} {!! Form::input('text','job_title_1',isset($past_work_exp[0]->title) ? $past_work_exp[0]->title : '',['class'=>'form-control','placeholder'=>trans('messages.position')]) !!}
@if(Auth::check() && !isset($job_detail))
{!! Form::label('pay_1',trans('messages.salary'),[]) !!} {!! Form::input('text','pay_1',isset($past_work_exp[0]->salary) ? $past_work_exp[0]->salary : '',['class'=>'form-control','placeholder'=>trans('messages.salary')]) !!}
{!! Form::label('leaving_1',trans('messages.leaving').' '.trans('messages.remarks'),[]) !!} {!! Form::input('text','leaving_1',isset($past_work_exp[0]->remarks) ? $past_work_exp[0]->remarks : '',['class'=>'form-control','placeholder'=>trans('messages.leaving').' '.trans('messages.remarks')]) !!}
@endif
{!! Form::label('work_from_2',trans('messages.from'),[]) !!}
{!! Form::selectMonth('work_from_2_mth',!empty($past_work_exp[1]->from) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[1]->from)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_from_2_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[1]->from) ? \Carbon\Carbon::parse($past_work_exp[1]->from)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_from_2','') !!}
{!! Form::label('work_to_2',trans('messages.to'),[]) !!}
{!! Form::selectMonth('work_to_2_mth',!empty($past_work_exp[1]->to) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[1]->to)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_to_2_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[1]->to) ? \Carbon\Carbon::parse($past_work_exp[1]->to)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_to_2','') !!}
{!! Form::label('company_2',trans('messages.company')) !!} {!! Form::input('text','company_2',isset($past_work_exp[1]->company) ? $past_work_exp[1]->company : '',['class'=>'form-control','placeholder'=>trans('messages.company').' '.trans('messages.name')]) !!}
{!! Form::label('site_2',trans('messages.location')) !!} {!! Form::input('text','site_2',isset($past_work_exp[1]->site) ? $past_work_exp[1]->site : '',['class'=>'form-control','placeholder'=>trans('messages.location')]) !!}
{!! Form::label('job_title_2',trans('messages.position'),[]) !!} {!! Form::input('text','job_title_2',isset($past_work_exp[1]->title) ? $past_work_exp[1]->title : '',['class'=>'form-control','placeholder'=>trans('messages.position')]) !!}
@if(Auth::check() && !isset($job_detail))
{!! Form::label('pay_2',trans('messages.salary'),[]) !!} {!! Form::input('text','pay_2',isset($past_work_exp[1]->salary) ? $past_work_exp[1]->salary : '',['class'=>'form-control','placeholder'=>trans('messages.salary')]) !!}
{!! Form::label('leaving_2',trans('messages.leaving').' '.trans('messages.remarks'),[]) !!} {!! Form::input('text','leaving_2',isset($past_work_exp[1]->remarks) ? $past_work_exp[1]->remarks : '',['class'=>'form-control','placeholder'=>trans('messages.leaving').' '.trans('messages.remarks')]) !!}
@endif
{!! Form::label('work_from_3',trans('messages.from'),[]) !!}
{!! Form::selectMonth('work_from_3_mth',!empty($past_work_exp[2]->from) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[2]->from)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_from_3_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[2]->from) ? \Carbon\Carbon::parse($past_work_exp[2]->from)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_from_3','') !!}
{!! Form::label('work_to_3',trans('messages.to'),[]) !!}
{!! Form::selectMonth('work_to_3_mth',!empty($past_work_exp[2]->to) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[2]->to)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_to_3_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[2]->to) ? \Carbon\Carbon::parse($past_work_exp[2]->to)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_to_3','') !!}
{!! Form::label('company_3',trans('messages.company')) !!} {!! Form::input('text','company_3',isset($past_work_exp[2]->company) ? $past_work_exp[2]->company : '',['class'=>'form-control','placeholder'=>trans('messages.company').' '.trans('messages.name')]) !!}
{!! Form::label('site_3',trans('messages.location')) !!} {!! Form::input('text','site_3',isset($past_work_exp[2]->site) ? $past_work_exp[2]->site : '',['class'=>'form-control','placeholder'=>trans('messages.location')]) !!}
{!! Form::label('job_title_3',trans('messages.position'),[]) !!} {!! Form::input('text','job_title_3',isset($past_work_exp[2]->title) ? $past_work_exp[2]->title : '',['class'=>'form-control','placeholder'=>trans('messages.position')]) !!}
@if(Auth::check() && !isset($job_detail))
{!! Form::label('pay_3',trans('messages.salary'),[]) !!} {!! Form::input('text','pay_3',isset($past_work_exp[2]->salary) ? $past_work_exp[2]->salary : '',['class'=>'form-control','placeholder'=>trans('messages.salary')]) !!}
{!! Form::label('leaving_3',trans('messages.leaving').' '.trans('messages.remarks'),[]) !!} {!! Form::input('text','leaving_3',isset($past_work_exp[2]->remarks) ? $past_work_exp[2]->remarks : '',['class'=>'form-control','placeholder'=>trans('messages.leaving').' '.trans('messages.remarks')]) !!}
@endif
{!! Form::label('work_from_4',trans('messages.from'),[]) !!}
{!! Form::selectMonth('work_from_4_mth',!empty($past_work_exp[3]->from) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[3]->from)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_from_4_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[3]->from) ? \Carbon\Carbon::parse($past_work_exp[3]->from)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_from_4','') !!}
{!! Form::label('work_to_4',trans('messages.to'),[]) !!}
{!! Form::selectMonth('work_to_4_mth',!empty($past_work_exp[3]->to) ? getMonthNumber(\Carbon\Carbon::parse($past_work_exp[3]->to)->format('F')) : '',['class' => 'form-control', 'placeholder' => '-- Month --']) !!}   {!! Form::selectYear('work_to_4_yr',1940,\Carbon\Carbon::now()->year,!empty($past_work_exp[3]->to) ? \Carbon\Carbon::parse($past_work_exp[3]->to)->format('Y') : '',['class' => 'form-control', 'placeholder' => '-- Year --']) !!} {!! Form::hidden('work_to_4','') !!}
{!! Form::label('company_4',trans('messages.company')) !!} {!! Form::input('text','company_4',isset($past_work_exp[3]->company) ? $past_work_exp[3]->company : '',['class'=>'form-control','placeholder'=>trans('messages.company').' '.trans('messages.name')]) !!}
{!! Form::label('site_4',trans('messages.location')) !!} {!! Form::input('text','site_4',isset($past_work_exp[3]->site) ? $past_work_exp[3]->site : '',['class'=>'form-control','placeholder'=>trans('messages.location')]) !!}
{!! Form::label('job_title_4',trans('messages.position'),[]) !!} {!! Form::input('text','job_title_4',isset($past_work_exp[3]->title) ? $past_work_exp[3]->title : '',['class'=>'form-control','placeholder'=>trans('messages.position')]) !!}
@if(Auth::check() && !isset($job_detail))
{!! Form::label('pay_4',trans('messages.salary'),[]) !!} {!! Form::input('text','pay_4',isset($past_work_exp[3]->salary) ? $past_work_exp[3]->salary : '',['class'=>'form-control','placeholder'=>trans('messages.salary')]) !!}
{!! Form::label('leaving_4',trans('messages.leaving').' '.trans('messages.remarks'),[]) !!} {!! Form::input('text','leaving_4',isset($past_work_exp[3]->remarks) ? $past_work_exp[3]->remarks : '',['class'=>'form-control','placeholder'=>trans('messages.leaving').' '.trans('messages.remarks')]) !!}
@endif

Declaration

{!! Form::label('medical_1','Are you currently undergoing long - term medical treatment ?',[]) !!} @if(Auth::check() && !isset($job_detail))
condition) && $medical_declaration[0]->condition == "No") ? 'checked' : ''}}> No   condition) && $medical_declaration[0]->condition == "Yes") ? 'checked' : ''}}> Yes  
@else
No   Yes  
{!! Form::label('medical_2','Have you undergone any major operations and stayed in hospital before ?',[]) !!} @if(Auth::check() && !isset($job_detail))
condition) && $medical_declaration[1]->condition == "No") ? 'checked' : ''}}> No   condition) && $medical_declaration[1]->condition == "Yes") ? 'checked' : ''}}> Yes  
@else
No   Yes  
{!! Form::label('medical_3','Are you suffering from any physical impairment or disease including mental illness, deafness, handicap and etc ?',[]) !!} @if(Auth::check() && !isset($job_detail))
condition) && $medical_declaration[2]->condition == "No") ? 'checked' : ''}}> No   condition) && $medical_declaration[2]->condition == "Yes") ? 'checked' : ''}}> Yes  
@else
No   Yes  
{!! Form::label('declare_1','Have you ever been dismissed or discharged from the service of any company ?',[]) !!} @if(Auth::check() && !isset($job_detail))
condition) && $offence_declaration[0]->condition == "No") ? 'checked' : ''}}> No   condition) && $offence_declaration[0]->condition == "Yes") ? 'checked' : ''}}> Yes  
@else
No   Yes  
{!! Form::label('declare_2','Have you ever been arrested or convicted of any criminal charge ?',[]) !!} @if(Auth::check() && !isset($job_detail))
condition) && $offence_declaration[1]->condition == "No") ? 'checked' : ''}}> No   condition) && $offence_declaration[1]->condition == "Yes") ? 'checked' : ''}}> Yes  
@else
No   Yes  
@if(Auth::check() && !isset($job_detail)) @else

I, the undersigned hereby confirm acceptance of the following terms and conditions:-

  1. Code of Conduct:
  2. I shall be punctual for work & display good customer service. I shall comply with Code of Conduct under PSIA (Private Security Industry Act) which are as follows:-

    Security Officer must
    1. Do Not Sleep
    2. Do Not Drink Alcohol
    3. Do Not Absent From Post
    4. Do Not Use Abusive Language
    5. Respond Promptly To Any Request for Assistant
    6. Do not give False Information
  3. Confidentiality:
  4. I shall keep confidential work related information like layout of the site, the security system, how many manpower being deployed, etc.

  5. Absence from work:
  6. I shall inform my OM or OE as early as possible if I cannot turn up to work and I shall provide proof of reason for absence. (MC, etc)

  7. Abandonment of post:
  8. I shall not leave post until the next Security personnel takes over my duty. I understand that disciplinary actions will be taken against me should I abandon post.

  9. Changing of shifts:
  10. I agree to stand in till the next shift Security Officer arrives. Such extended duty of more than fifteen minutes will be paid as overtime work.

@endif @if(Auth::check() && !isset($job_detail)) @else

Terms & Conditions

I am currently NOT working as a civil servant or a Volunteer Special Constabulary (VSC) personnel. I shall immediately declare to the Company if I am working as a civil servant / VSC. Failing to do so, I shall be accountable for any sort of outcome thereafter.

I authorize the Company to make reference to all my past employers on my job performance / experience.

I further give consent to the Company for my personal data to be used for work purposes. E.g. sending my resume to clients, submitting my particulars to PLRD or to release my information to government departments (CPF, MOM, etc..) whenever requested.

I confirm that all the above facts in this application form are true and accurate to the best of my knowledge. I have not deliberately omitted any relevant fact. I understand that should any of the above information turn out to be false or inaccurate, I will be subjected to appropriate action.

@endif @else

{{trans('messages.applying_as_user',['attribute' => Auth::user()->full_name])}}

@endif {{-- Attachments --}} @if(Auth::check() && !isset($job_detail)) @include('upload.index',['module' => 'job-application','upload_button' => trans('messages.upload').' '.trans('messages.nric').' (Front & Back)','module_id' => isset($job_application) ? $job_application->id : ''])
{!! Form::label('interviewer','Interviewer',[]) !!} {!! Form::select('interviewer',$interviewer,isset($job_application->last_name) ? $job_application->last_name : '',['class' => 'form-control show-tick', 'title' => trans('messages.select_one')]) !!}
{!! Form::label('additional_information','Interviewer '.trans('messages.remarks'),[]) !!} {!! Form::textarea('additional_information',isset($job_application) ? $job_application->additional_information : '',['size' => '30x3', 'class' => 'form-control', 'placeholder' => trans('messages.remarks'), 'data-show-counter' => 1, 'data-limit' => config('config.textarea_limit'), 'data-autoresize' => 1]) !!}
@else @if(!in_array(env('COMPANY_ID'), config('constant.custom_job_application'))) {!! trans('messages.back_to').' '.trans('messages.job').' '.trans('messages.post') !!} @endif @endif {{-- Signature Portion --}} @if(Auth::check() && !isset($job_detail)) {{-- Submit Button (Backend) --}} {!! Form::submit(isset($buttonText) ? $buttonText : trans('messages.submit').' '.trans('messages.application'),['id'=>'m-submit', 'class'=>'btn btn-primary pull-right']) !!} @else

Please sign below to agree with the terms and conditions before submitting your application.
{{-- Submit Button (Frontend) --}} {!! Form::submit(isset($buttonText) ? $buttonText : trans('messages.submit').' '.trans('messages.application'),['id'=>'m-submit', 'class'=>'btn btn-primary pull-right', 'disabled'=>'true']) !!}
{!! Form::hidden('img_string','',['id' => 'signature_string'])!!} @endif @section('css') @if(config('config.enable_uppercase')) @endif @endsection @section('js') {!! Html::script('https://cdnjs.cloudflare.com/ajax/libs/fabric.js/1.7.22/fabric.min.js') !!} @endsection