@extends('layouts.app') @section('breadcrumb')

@lang('Edit Status')

@endsection @section('content') @if ($errors->any())
@lang('Whoops!') @lang('There were some problems with your input.')

@endif
@csrf @method('PUT')
@lang('To agents'): *
@lang('To clients'): *
@lang('Description'):
@lang('Protected'): {{-- --}} {!! Form::hidden('protected', 0) !!} {!! Form::checkbox('protected', 1, $status->protected) !!}
@lang('Stop SLA timer'): {{-- --}} {!! Form::hidden('stop_sla', 0) !!} {!! Form::checkbox('stop_sla', 1, $status->stop_sla) !!}
@endsection