芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/resources/views/admin/photo/edit.blade.php
@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.edit_photo') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('photo.update', $gallery->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="gallery_image">{{ __('content.image') }} (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="gallery_image" class="form-control-file" id="gallery_image"> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/photo/'.$gallery->gallery_image) }}" alt="gallery image" class="rounded w-25"> </a> </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $gallery->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage