@extends('header') @section('content') @parent {!! Former::open($url) ->method($method) ->addClass('warn-on-exit') ->autocomplete('on') ->rules([ 'name' => 'required', 'description' => 'required', ]) !!} {{ Former::populate($ticket_templates) }}
{!! Former::text('public_id') !!}
@include('accounts.nav', ['selected' => ACCOUNT_TICKETS])

{!! trans('texts.add_template') !!}

{{trans('texts.name')}} {!! Former::small_text('name') ->label('')->style('width:100%;') !!} {{ trans('texts.description') }} {!! Former::textarea('description')->label(trans('texts.description'))->style('display:none')->raw() !!}
@include('partials/quill_toolbar', ['name' => 'description'])
{!! Button::normal(trans('texts.raw'))->withAttributes(['onclick' => 'showRaw()'])->small() !!} {!! Button::primary(trans('texts.preview'))->withAttributes(['onclick' => 'serverPreview()', 'style' => 'display:none'])->small() !!}
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
{!! Former::close() !!} @include('partials.email_templates') @stop