@extends('admin/layouts/dashboard') @section('breadcrumbs', Breadcrumbs::render(Route::current()->getName(), $review)) @section('content')

Редактирование отзыва:

@csrf {{ Form::hidden('_method', 'PUT') }}
{{ $review->text }}
@if( !empty($review->image) )
@endif
{{ Form::label('name', 'Фото') }}
@include('admin.helper.form.submit', [ 'label' => 'Сохранить' ])
@endsection @section('script') @endsection