@extends('backend.layouts.split') @section('title', 'Create Template' . ' '.html_entity_decode("—", ENT_QUOTES, 'UTF-8').' ' . app_name()) @section('content') {{ html()->form('POST', route('admin.auth.template.store'))->class('form-actions top')->open() }}

@lang('labels.backend.access.emails.management') @lang('labels.backend.access.emails.create')

{{ html()->label(__('validation.attributes.frontend.templates.title'))->class('control-label')->for('title') }}
{{ html()->text('title') ->class('form-control input-circle-right') ->placeholder(__('validation.attributes.frontend.templates.title')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label(__('validation.attributes.frontend.templates.response_ok'))->class('control-label')->for('response_ok') }}
{{ html()->text('response_ok') ->class('form-control input-circle-right') ->placeholder(__('validation.attributes.frontend.templates.response_ok')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label(__('validation.attributes.frontend.templates.response_no'))->class('control-label')->for('response_no') }}
{{ html()->text('response_no') ->class('form-control input-circle-right') ->placeholder(__('validation.attributes.frontend.templates.response_no')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label('Subject')->class('control-label')->for('subject') }}
{{ html()->label('Description')->class('control-label')->for('description') }}
{{ form_cancel(route('admin.auth.template.index'), __('buttons.general.cancel')) }} {{ form_submit(__('buttons.general.crud.create')) }}
{{ html()->form()->close() }} @endsection