File manager - Edit - /var/www/payraty/hris/resources/views/goaltracking/edit.blade.php
Back
{{ Form::model($goalTracking, ['route' => ['goaltracking.update', $goalTracking->id], 'method' => 'PUT', 'class' => 'needs-validation', 'novalidate']) }} <div class="modal-body"> <div class="row"> <div class="col-md-6"> <div class="form-group"> {{ Form::label('branch', __('Branch'), ['class' => 'col-form-label']) }}<x-required></x-required> {{ Form::select('branch', $brances, null, ['class' => 'form-control select2', 'required' => 'required']) }} </div> </div> <div class="col-md-6"> <div class="form-group"> {{ Form::label('goal_type', __('Goal Types'), ['class' => 'col-form-label']) }}<x-required></x-required> {{ Form::select('goal_type', $goalTypes, null, ['class' => 'form-control select2', 'required' => 'required']) }} </div> </div> <div class="col-md-6"> <div class="form-group"> {{ Form::label('goal_scope', __('Goal Scope'), ['class' => 'col-form-label']) }}<x-required></x-required> {{ Form::select('goal_scope', ['individual' => 'Individual', 'department' => 'Department'], isset($goalTracking) ? $goalTracking->goal_scope : 'individual', ['class' => 'form-control', 'required']) }} </div> </div> <div class="col-md-6"> <div class="form-group"> {{ Form::label('start_date', __('Start Date'), ['class' => 'col-form-label']) }}<x-required></x-required> {{ Form::text('start_date', null, ['class' => 'form-control d_week','autocomplete'=>'off' ,'required' => 'required']) }} </div> </div> <div class="col-md-6"> <div class="form-group"> {{ Form::label('end_date', __('End Date'), ['class' => 'col-form-label']) }}<x-required></x-required> {{ Form::text('end_date', null, ['class' => 'form-control d_week','autocomplete'=>'off' ,'required' => 'required']) }} </div> </div> <div class="col-md-12"> <div class="form-group"> {{ Form::label('subject', __('Subject'), ['class' => 'col-form-label']) }}<x-required></x-required> {{ Form::text('subject', null, ['class' => 'form-control','placeholder'=>__('Enter subject') ,'required' => 'required']) }} </div> </div> <div class="col-md-12"> <div class="form-group"> {{ Form::label('target_achievement', __('Target Achievement'), ['class' => 'col-form-label']) }} {{ Form::text('target_achievement', null, ['class' => 'form-control' ,'placeholder'=>__('Enter target achievement')]) }} </div> </div> <div class="col-md-12"> <div class="form-group"> {{ Form::label('description', __('Notes'), ['class' => 'col-form-label']) }} {{ Form::textarea('description', null, ['class' => 'form-control', 'rows' => '3' ,'placeholder'=>__('Enter Notes')]) }} </div> </div> <div class="col-md-12"> <div class="form-group"> {{ Form::label('status', __('Status'), ['class' => 'col-form-label']) }} {{ Form::select('status', $status, null, ['class' => 'form-control select2']) }} </div> </div> <div class="col-md-12"> <fieldset id='demo1' class="rate"> <input class="stars" type="radio" id="rating-5" name="rating" value="5" {{ $goalTracking->rating == 5 ? 'checked' : '' }}> <label class="full" for="rating-5" title="Awesome - 5 stars"></label> <input class="stars" type="radio" id="rating-4" name="rating" value="4" {{ $goalTracking->rating == 4 ? 'checked' : '' }}> <label class="full" for="rating-4" title="Pretty good - 4 stars"></label> <input class="stars" type="radio" id="rating-3" name="rating" value="3" {{ $goalTracking->rating == 3 ? 'checked' : '' }}> <label class="full" for="rating-3" title="Meh - 3 stars"></label> <input class="stars" type="radio" id="rating-2" name="rating" value="2" {{ $goalTracking->rating == 2 ? 'checked' : '' }}> <label class="full" for="rating-2" title="Kinda bad - 2 stars"></label> <input class="stars" type="radio" id="technical-1" name="rating" value="1" {{ $goalTracking->rating == 1 ? 'checked' : '' }}> <label class="full" for="technical-1" title="Sucks big time - 1 star"></label> </fieldset> </div> <div class="col-md-12"> <div class="form-group"> <input type="range" class=" slider w-100 mb-0 " name="progress" id="myRange" value="{{ $goalTracking->progress }}" min="1" max="100" oninput="ageOutputId.value = myRange.value"> <output name="ageOutputName" id="ageOutputId">{{ $goalTracking->progress }}</output> % </div> </div> </div> </div> <div class="modal-footer"> <input type="button" value="Cancel" class="btn btn-light" data-bs-dismiss="modal"> <input type="submit" value="{{ __('Update') }}" class="btn btn-primary"> </div> {{ Form::close() }}
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings