@extends('backend.layouts.split') @section('title', 'Edit Template' . ' '.html_entity_decode("—", ENT_QUOTES, 'UTF-8').' ' . app_name()) @section('content') {{ html()->modelForm($template, 'PATCH', route('admin.auth.template.update', $template->id))->class('form-actions top')->open() }}

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

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