@extends('layouts.main') @section('title', 'Update Incident Response Form') @section('breadcrumb')

Update Incident Response Form

@endsection @section('content')
{{ Form::model($form, ['method'=>'post']) }} {{ Form::token() }} {{ Form::hidden('idclient', \Illuminate\Support\Facades\Auth::user()->getClientIdFromIntranet()) }}
{{ Form::label('Company', 'Company Name') }} {{ Form::text('Company', null, ['class'=>'form-control', 'placeholder'=>'Company Name']) }} @if ($errors->has('Company')) {{ $errors->first('Company') }} @endif
{{ Form::label('contactname', 'Security Contact Name') }} {{ Form::text('contactname', null, ['class'=>'form-control', 'placeholder'=>'Contact Name']) }} @if ($errors->has('contactname')) {{ $errors->first('contactname') }} @endif
{{ Form::label('phonenumber1', 'Security Contact Phone Number (1st)') }} {{ Form::text('phonenumber1', null, ['class'=>'form-control', 'placeholder'=>'Security Contact Phone Number (1st)']) }} @if ($errors->has('phonenumber1')) {{ $errors->first('phonenumber1') }} @endif
{{ Form::label('phonenumber2', 'Security Contact Phone Number (2st)') }} {{ Form::text('phonenumber2', null, ['class'=>'form-control', 'placeholder'=>'Security Contact Phone Number (2st)']) }} @if ($errors->has('phonenumber2')) {{ $errors->first('phonenumber2') }} @endif
{{ Form::label('email1', 'Security Contact Email Address (1nd)') }} {{ Form::text('email1', null, ['class'=>'form-control', 'placeholder'=>'Security Contact Email Address (1nd)']) }} @if ($errors->has('email1')) {{ $errors->first('email1') }} @endif
{{ Form::label('email2', 'Security Contact Email Address (2nd)') }} {{ Form::text('email2', null, ['class'=>'form-control', 'placeholder'=>'Security Contact Email Address (2nd)']) }} @if ($errors->has('email2')) {{ $errors->first('email2') }} @endif

Actions

Severity Level Action / No-Action Call Email
High {{ Form::select('actionhigh', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }} {{ Form::select('callhigh', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }} {{ Form::select('emailhigh', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }}
Medium {{ Form::select('actionmedium', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }} {{ Form::select('callmedium', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }} {{ Form::select('emailmedium', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }}
Low {{ Form::select('actionlow', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }} {{ Form::select('calllow', \App\Models\IncidentResponse::CHOICES, null, ['class'=>'standards_id_input form-control']) }} {{ Form::select('emaillow', \App\Models\IncidentResponse::CHOICES , null, ['class'=>'standards_id_input form-control']) }}
{{ Form::close() }}
@endsection