Вход Регистрация
Файл: resources/views/admin/notices/edit.blade.php
Строк: 69
<?php
@extends('layout')

@
section('title'__('admin.notices.edit'))

@
section('breadcrumb')
    <
nav>
        <
ol class="breadcrumb">
            <
li class="breadcrumb-item"><a href="/"><class="fas fa-home"></i></a></li>
            <
li class="breadcrumb-item"><a href="/admin">{{ __('index.panel') }}</a></li>
            <
li class="breadcrumb-item"><a href="/admin/notices">{{ __('index.email_templates') }}</a></li>
            <
li class="breadcrumb-item active">{{ __('admin.notices.edit') }}</li>
        </
ol>
    </
nav>
@
stop

@section('content')
    @if (
$notice->protect)
        <
div class="alert alert-warning">
            <
class="fa fa-exclamation-circle"></i> {{ __('admin.notices.edit_system_template') }}
        </
div>
    @endif

    <
span class="badge bg-info">{{ __('main.type') }}: {{ $notice->type }}</span><br>

    <
div class="section-form mb-3 shadow">
        <
form action="/admin/notices/edit/{{ $notice->id }}" method="post">
            @
csrf
            
<div class="mb-3{{ hasError('name') }}">
                <
label for="name" class="form-label">{{ __('main.title') }}:</label>
                <
input type="text" class="form-control" id="name" name="name" maxlength="100" value="{{ getInput('name', $notice->name) }}" required>
                <
div class="invalid-feedback">{{ textError('name') }}</div>
            </
div>

            <
div class="mb-3{{ hasError('text') }}">
                <
label for="text" class="form-label">{{ __('main.text') }}:</label>
                <
textarea class="form-control markItUp" id="text" rows="15" name="text" required>{{ getInput('text'$notice->text) }}</textarea>
                <
div class="invalid-feedback">{{ textError('text') }}</div>
            </
div>

            <
div class="form-check">
                <
label class="form-check-label">
                    <
input name="protect" class="form-check-input" type="checkbox" value="1"{{ getInput('protect'$notice->protect) ? ' checked' '' }}>
                    {{ 
__('admin.notices.system_template') }}
                </
label>
            </
div>

            <
button class="btn btn-primary">{{ __('main.save') }}</button>
        </
form>
    </
div>
@
stop
?>
Онлайн: 2
Реклама