File size: 2.04Kb
@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/photos">Галерея</a></li>
<li class="breadcrumb-item"><a href="/photos/{{ $photo->id }}">{{ $photo->title }}</a></li>
<li class="breadcrumb-item active">Редактирование фотографии</li>
</ol>
</nav>
<div class="form">
<form action="/admin/photos/edit/{{ $photo->id }}?page={{ $page }}" method="post">
<input type="hidden" name="token" value="{{ $_SESSION['token'] }}">
<div class="form-group{{ hasError('title') }}">
<label for="title">Название:</label>
<input class="form-control" id="title" name="title" type="text" value="{{ getInput('title', $photo->title) }}" maxlength="50" required>
{!! textError('title') !!}
</div>
<div class="form-group{{ hasError('text') }}">
<label for="text">Название ссылки:</label>
<textarea id="text" class="form-control" cols="25" rows="5" name="text">{{ getInput('text', $photo->text) }}</textarea>
{!! textError('text') !!}
</div>
<div class="custom-control custom-checkbox">
<input type="hidden" value="0" name="closed">
<input type="checkbox" class="custom-control-input" value="1" name="closed" id="closed"{{ getInput('closed', $photo->closed) ? ' checked' : '' }}>
<label class="custom-control-label" for="closed">Закрыть комментарии</label>
</div>
<button class="btn btn-primary">Изменить</button>
</form>
</div>
@stop