@extends('themes.default1.admin.layout.admin') @section('Manage') active @stop @section('manage-bar') active @stop @section('sla') class="active" @stop @section('HeadInclude') @stop @section('PageHeader')

{!! Lang::get('lang.sla_plan') !!}

@stop @section('breadcrumbs') @stop @section('content') {!! Form::model($slas,['url' => 'sla/'.$slas->id, 'method' => 'PATCH']) !!}

{{Lang::get('lang.edit')}}

@if(Session::has('errors'))
Alert!
@if($errors->first('name'))
  • {!! $errors->first('name', ':message') !!}
  • @endif @if($errors->first('grace_period'))
  • {!! $errors->first('grace_period', ':message') !!}
  • @endif @if($errors->first('status'))
  • {!! $errors->first('status', ':message') !!}
  • @endif
    @endif
    {!! Form::label('name',Lang::get('lang.name')) !!} * {!! Form::text('name',null,['class' => 'form-control']) !!}
    {!! Form::label('grace_period',Lang::get('lang.grace_period')) !!} {!! Form::select('grace_period',['6 Hours'=>'6 Hours', '12 Hours'=>'12 Hours', '18 Hours'=>'18 Hours', '24 Hours'=>'24 Hours', '36 Hours'=>'36 Hours', '48 Hours'=>'48 Hours'],null,['class' => 'form-control']) !!}
    {!! Form::label('status',Lang::get('lang.status')) !!}  {!! Form::radio('status','1',true) !!}   {{Lang::get('lang.active')}}      {!! Form::radio('status','0') !!}   {{Lang::get('lang.inactive')}}
    {!! Form::label('admin_note',Lang::get('lang.admin_notes')) !!} {!! Form::textarea('admin_note',null,['class' => 'form-control','size' => '30x5']) !!}
    {!! Form::close() !!} @stop