@extends(BaseHelper::getAdminMasterLayoutTemplate()) @section('content') {!! Form::open(['route' => ['setting.email.template.store']]) !!}

{{ trans('core/setting::setting.email.title') }}

{!! BaseHelper::clean(trans('core/setting::setting.email.description')) !!}

@foreach(EmailHandler::getVariables('core') as $coreKey => $coreVariable)

{{ $coreKey }}: {{ $coreVariable }}

@endforeach @foreach(EmailHandler::getVariables($pluginData['name']) as $moduleKey => $moduleVariable)

{{ $moduleKey }}: {{ trans($moduleVariable) }}

@endforeach
 
{!! Form::close() !!} {!! Form::modalAction('reset-template-to-default-modal', trans('core/setting::setting.email.confirm_reset'), 'info', trans('core/setting::setting.email.confirm_message'), 'reset-template-to-default-button', trans('core/setting::setting.email.continue')) !!} @endsection