Размер файла: 2.08Kb
@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="/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="/photos/edit/{{ $photo->id }}?page={{ $page }}" method="post">
<input type="hidden" name="token" value="{{ $_SESSION['token'] }}">
<div class="form-group{{ hasError('title') }}">
<label for="inputTitle">Название:</label>
<input type="text" class="form-control" id="inputTitle" name="title" maxlength="50" value="{{ getInput('title', $photo->title) }}" required>
{!! textError('title') !!}
</div>
<div class="form-group{{ hasError('text') }}">
<label for="text">Подпись к фото:</label>
<textarea class="form-control markItUp" id="text" rows="5" name="text">{{ getInput('text', $photo->text) }}</textarea>
{!! textError('text') !!}
</div>
@include('app._upload', ['id' => $photo->id, 'files' => $photo->files, 'type' => App\Models\Photo::class])
<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-success">Изменить</button>
</form>
</div>
@stop