Размер файла: 2.05Kb
@extends('layout')
@section('title')
Создание шаблона
@stop
@section('content')
<h1>Создание шаблона</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item"><a href="/admin">Панель</a></li>
<li class="breadcrumb-item"><a href="/admin/notices">Шаблоны писем</a></li>
<li class="breadcrumb-item active">Создание шаблона</li>
</ol>
</nav>
<div class="form">
<form action="/admin/notices/create" method="post">
<input type="hidden" name="token" value="{{ $_SESSION['token'] }}">
<div class="form-group{{ hasError('type') }}">
<label for="type">Тип (a-z0-9_-):</label>
<input type="text" class="form-control" id="type" name="type" maxlength="20" value="{{ getInput('type') }}" required>
{!! textError('type') !!}
</div>
<div class="form-group{{ hasError('name') }}">
<label for="name">Название:</label>
<input type="text" class="form-control" id="name" name="name" maxlength="100" value="{{ getInput('name') }}" required>
{!! textError('name') !!}
</div>
<div class="form-group{{ hasError('text') }}">
<label for="text">Текст:</label>
<textarea class="form-control markItUp" id="text" rows="15" name="text" required>{{ getInput('text') }}</textarea>
{!! textError('text') !!}
</div>
<div class="form-check">
<label class="form-check-label">
<input name="protect" class="form-check-input" type="checkbox" value="1"{{ getInput('protect') ? ' checked' : '' }}>
Системный шаблон
</label>
</div>
<button class="btn btn-primary">Сохранить</button>
</form>
</div>
@stop