@extends('layouts.cms') @section('content') {{ Form::open(array('url' => 'admin/config/notifications/save', 'role' => 'form', 'class' => 'form-horizontal', 'name' => 'notification')) }}

{{ Lang::get('cms.wiadomosc_aktywacyjna') }}

@if ($show_language_tabs) @endif
@foreach ($languages as $key => $language) @if ($code = strtolower($language->code)) @endif
{{ Form::text('new_user['.$language->id.'][title]', @$settings->$code->new_user_title, array('class' => Config::get('custom.form.input-class'), 'id' => 'new_user_title_' . $code)) }}
{{ Form::textarea('new_user['.$language->id.'][content]', @$settings->$code->new_user_content, array('class' => Config::get('custom.form.input-class') . " editor", 'id' => 'new_user_content_' . $code)) }}
  • {IMIE} - imię zamawiającego
  • {NAZWISKO} - nazwisko zamawiającego
  • {EMAIL} - adres email
  • {LINK_AKTYWACYJNY} - link aktywacyjny
@endforeach

{{ Lang::get('cms.przypomninie_hasla') }}

@if ($show_language_tabs) @endif
@foreach ($languages as $key => $language) @if ($code = strtolower($language->code)) @endif
{{ Form::text('remind_pass['.$language->id.'][title]', @$settings->$code->remind_pass_title, array('class' => Config::get('custom.form.input-class'), 'id' => 'remind_pass_title_' . $code)) }}
{{ Form::textarea('remind_pass['.$language->id.'][content]', @$settings->$code->remind_pass_content, array('class' => Config::get('custom.form.input-class') . " editor", 'id' => 'remind_pass_content_' . $code)) }}
  • {IMIE} - imię zamawiającego
  • {NAZWISKO} - nazwisko zamawiającego
  • {EMAIL} - adres email
  • {LINK_FORMULARZA_ZMIANY_HASLA} - link do formularza zmiany hasła
@endforeach
{{ Form::close() }} @stop