51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
@extends('admin::layouts.master')
|
|
|
|
@section('title')
|
|
Update Gallery
|
|
@endsection
|
|
|
|
@section('breadcrumb')
|
|
@php
|
|
$breadcrumbData = [
|
|
[
|
|
'title' => 'Gallery',
|
|
'link' => 'null',
|
|
],
|
|
[
|
|
'title' => 'Dashboard',
|
|
'link' => route('dashboard'),
|
|
],
|
|
[
|
|
'title' => 'Galleries',
|
|
'link' => null,
|
|
],
|
|
[
|
|
'title' => 'Update Gallery',
|
|
'link' => null,
|
|
],
|
|
];
|
|
@endphp
|
|
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
|
|
@endsection
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-xxl">
|
|
<div class="card mb-4">
|
|
<div class="card-header d-flex align-items-center justify-content-between">
|
|
<h5 class="mb-0">Update Gallery</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="{{ route('cms.galleries.update', ['uuid' => $gallery->uuid]) }}" method="POST"
|
|
enctype="multipart/form-data">
|
|
@csrf
|
|
@method('PUT')
|
|
|
|
@include('gallery::partial.form')
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|