@extends('themes.default1.admin.layout.admin') @section('Settings') class="active" @stop @section('settings-bar') active @stop @section('tickets') class="active" @stop @section('HeadInclude') @stop @section('PageHeader') @stop @section('breadcrumbs') @stop @section('content') {!! Form::model($tickets,['url' => 'postticket/'.$tickets->id, 'method' => 'PATCH']) !!}

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

{!! Form::submit(Lang::get('lang.save'),['class'=>'btn btn-primary'])!!}
@if(Session::has('success'))
Success! {{Session::get('success')}}
@endif @if(Session::has('fails'))
Fail! {{Session::get('fails')}}
@endif
{{--
--}} {{--
--}} {{-- {!! Form::label('num_format',Lang::get('lang.default_ticket_number_format')) !!} --}} {{-- {!! $errors->first('num_format', ':message') !!} --}} {{-- {!! Form::text('num_format',$tickets->num_format,['class' => 'form-control']) !!} --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::label('num_sequence',Lang::get('lang.default_ticket_number_sequence')) !!} --}} {{-- {!! $errors->first('num_sequence', ':message') !!} --}} {{-- {!!Form::select('num_sequence', ['random','general'],null,['class' => 'form-control select']) !!} --}} {{--
--}} {{--
--}}
{!! Form::label('status',Lang::get('lang.default_status')) !!} {!! $errors->first('status', ':message') !!}
{!! Form::label('priority',Lang::get('lang.default_priority')) !!} {!! $errors->first('priority', ':message') !!} {!!Form::select('priority', [''=>'select a priority','Priorities'=>$priority->lists('priority_desc','priority_id')],null,['class' => 'form-control']) !!}
{!! Form::label('sla',Lang::get('lang.default_sla')) !!} {!! $errors->first('sla', ':message') !!} {!!Form::select('sla', $slas->lists('grace_period','id'),null,['class' => 'form-control']) !!}
{!! Form::label('help_topic',Lang::get('lang.default_help_topic')) !!} {!! $errors->first('help_topic', ':message') !!} {!!Form::select('help_topic', $topics->lists('topic','id'),null,['class' => 'form-control']) !!}
{{--
--}} {{--
--}} {{-- {!! Form::label('max_open_ticket',Lang::get('lang.maximum_open_tickets')) !!} --}} {{-- {!! $errors->first('max_open_ticket', ':message') !!} --}} {{-- {!! Form::text('max_open_ticket',$tickets->max_open_ticket,['class' => 'form-control']) !!} --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::label('collision_avoid',Lang::get('lang.agent_collision_avoidance_duration')) !!} --}} {{-- {!! $errors->first('collision_avoid', ':message') !!} --}} {{-- {!! Form::text('collision_avoid',$tickets->collision_avoid,['class' => 'form-control']) !!} --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('captcha',1,true) !!}  --}} {{-- {!! Form::label('captcha',Lang::get('lang.human_verification')) !!} --}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('claim_response',1,true) !!}  --}} {{-- {!! Form::label('claim_response',Lang::get('lang.claim_on_response')) !!} --}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('assigned_ticket',1,true) !!}  --}} {{-- {!! Form::label('assigned_ticket',Lang::get('lang.assigned_tickets')) !!} --}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('answered_ticket',1,true) !!}  --}} {{-- {!! Form::label('answered_ticket',Lang::get('lang.answered_tickets')) !!} --}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('agent_mask',1,true) !!}   --}} {{-- {!! Form::label('agent_mask',Lang::get('lang.agent_identity_masking')) !!} --}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('html',1,true) !!}  --}} {{-- {!! Form::label('html',Lang::get('lang.enable_HTML_ticket_thread')) !!} --}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('client_update',1,true) !!}  --}} {{-- {!! Form::label('client_update',Lang::get('lang.allow_client_updates')) !!} --}} {{--
--}}
@stop @section('FooterInclude') @stop @stop