Change Request Client:
{{ $contact->account->account_name }}
Project:
{!! Form::text('title', null, ['class' => 'form-control','required'=>'required']) !!}
{!! Form::label('Requested_By', 'Requested by:') !!}
{{ $contact->firstname }} {{ $contact->lastname }}
{!! Form::label('date', 'Date:') !!}
{!! Form::text('date', date('m/d/Y',strtotime($datas->date)), ['class' => 'date form-control','required'=>'required','data-provide'=>'datepicker','data-date-autoclose'=>'true','placeholder'=>'mm/dd/yyyy','pattern'=>'(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d']) !!}
{!! Form::label('location', 'Department/ location:') !!}
{!! Form::text('location', null, ['class' => 'form-control','required'=>'required']) !!}
{!! Form::label('phone', 'Telephone:') !!}
{!! Form::text('phone', null, ['class' => 'form-control','required'=>'required']) !!}
{!! Form::label('description', 'Description of the change:') !!} {!! Form::textarea('description', null, ['rows'=>'3','class' => 'form-control','required'=>'required']) !!}
{!! Form::label('reason', 'Reason for the change (fix error, innovation or standard regulatory compliance):') !!} {!! Form::textarea('reason', null, ['rows'=>'3','class' => 'form-control','required'=>'required']) !!}
{!! Form::label('due_date', 'Change needed by (date):') !!}
{!! Form::text('due_date', date('m/d/Y',strtotime($datas->due_date)), ['class' => 'date form-control','required'=>'required','data-provide'=>'datepicker','data-date-autoclose'=>'true','placeholder'=>'mm/dd/yyyy','pattern'=>'(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d']) !!}
{!! Form::label('approval_of_request', 'Approval of Request:') !!}
{{$datas->approval_of_request}}
Change Impact Evaluation
Change Type
Application
Hardware
Network
Operating System/Utilities
Database
Procedures
Security
System/Service Configuration
Change Urgency
Emergency
High
Medium
Low
Change Impact
High
Medium
Low
Environment(s) Impacted:
{!! Form::textarea('environment_impacted', null, ['rows'=>'3','class' => 'form-control','required'=>'required']) !!}
Change Approval or Rejection
Change Request Status
Accepted
Rejected
Comments:
{!! Form::text(null, $datas->comments, ['class' => 'form-control','disabled'=>'disabled']) !!}
Change scheduled for (date):
{!! Form::text(null, ($datas->schedule)?date('m/d/Y',strtotime($datas->scheduled)):null, ['disabled'=>'disabled','class' => 'date form-control','required'=>'required','data-provide'=>'datepicker','data-date-autoclose'=>'true','placeholder'=>'mm/dd/yyyy','pattern'=>'(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d']) !!}
Implementation assigned to (names): @if($datas->assigned_users_id) {!! \App\Models\Employee::getUsersData($datas->assigned_users_id) !!} @endif
Change Implementation
Staging test results:
{!! Form::textarea('staging_results', null, ['rows'=>'3','class' => 'form-control']) !!}
Implementation test results:
{{$datas->implementation_results}}
Date of Implementation
@if($datas->implementation_date) {{date('m/d/Y',strtotime($datas->implementation_date))}} @endif
Implementor Sign Off
{{$datas->implementor_sign_off}}
Date
@if($datas->end_date) {{date('m/d/Y',strtotime($datas->end_date))}} @endif
{!! Form::submit('Save', ['class' => 'btn btn-success']) !!} Cancel
@section('scripts') @endsection