����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.144.114.63 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/././bofirm.gltechlimited.com/resources/views/admin/category/ |
Upload File : |
@extends('layouts.admin') @section('content') <!-- Page content area start --> <div class="page-content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="breadcrumb__content"> <div class="breadcrumb__content__left"> <div class="breadcrumb__title"> <h2>{{ __('Edit Category') }}</h2> </div> </div> <div class="breadcrumb__content__right"> <nav aria-label="breadcrumb"> <ul class="breadcrumb"> <li class="breadcrumb-item"><a href="{{route('admin.dashboard')}}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item"><a href="{{route('category.index')}}">{{ __('Categories') }}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ __($title) }}</li> </ul> </nav> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-vertical__item bg-style"> <div class="item-top mb-30"> <h2>{{__('Edit Category')}}</h2> </div> <form action="{{route('category.update', [$category->uuid])}}" method="post" enctype="multipart/form-data"> @csrf <div class="input__group mb-25"> <label for="name"> {{__('Name')}} </label> <div> <input type="text" name="name" id="name" value="{{$category->name}}" class="form-control flat-input" placeholder=" {{__('Name')}} "> @if ($errors->has('name')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('name') }}</span> @endif </div> </div> <div class="input__group mb-25"> <label for="is_feature"> {{__('Feature')}} </label> <div> <label class="text-black"> <input type="checkbox" name="is_feature" id="is_feature" value="yes" {{$category->is_feature == 'yes' ? 'checked' : '' }} > {{ __('Yes') }} </label> </div> </div> <div class="custom-form-group mb-25 "> <label for="image" class="text-lg-right text-black mb-2"> {{__('Image')}} </label> <div class="upload-img-box mb-25"> @if($category->image) <img src="{{asset($category->image_path)}}"> @else <img src=""> @endif <input type="file" name="image" id="image" accept="image/*" onchange="previewFile(this)"> <div class="upload-img-box-icon"> <i class="fa fa-camera"></i> <p class="m-0">{{__('Image')}}</p> </div> </div> @if ($errors->has('image')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('image') }}</span> @endif <p>{{ __('Accepted Image Files') }}: PNG <br> {{ __('Recommend Size') }}: 60 x 60 (1MB)</p> </div> <div class="input__group mb-25"> <label>{{ __('Meta Title') }}</label> <input type="text" name="meta_title" value="{{ old('meta_title', $category->meta_title) }}" placeholder="{{ __('Meta title') }}" class="form-control"> @if ($errors->has('meta_title')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('meta_title') }}</span> @endif </div> <div class="input__group mb-25"> <label>{{ __('Meta Description') }}</label> <input type="text" name="meta_description" value="{{ old('meta_description', $category->meta_description) }}" placeholder="{{ __('meta description') }}" class="form-control"> @if ($errors->has('meta_description')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('meta_description') }}</span> @endif </div> <div class="input__group mb-25"> <label>{{ __('Meta Keywords') }}</label> <input type="text" name="meta_keywords" value="{{ old('meta_keywords', $category->meta_keywords) }}" placeholder="{{ __('meta keywords') }}" class="form-control"> @if ($errors->has('meta_keywords')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('meta_keywords') }}</span> @endif </div> <div class="input__group mb-25"> <label>{{ __('OG Image') }}</label> <div class="upload-img-box"> @if($category->og_image != NULL && $category->og_image != '') <img src="{{getImageFile($category->og_image)}}"> @else <img src=""> @endif <input type="file" name="og_image" id="og_image" accept="image/*" onchange="previewFile(this)"> <div class="upload-img-box-icon"> <i class="fa fa-camera"></i> <p class="m-0">{{__('OG Image')}}</p> </div> </div> @if ($errors->has('og_image')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('og_image') }}</span> @endif <p><span class="text-black">{{ __('Accepted Files') }}:</span> PNG, JPG <br> <span class="text-black">{{ __('Recommend Size') }}:</span> 1200 x 627</p> </div> <div class="input__group"> <div> @updateButton </div> </div> </form> </div> </div> </div> </div> </div> <!-- Page content area end --> @endsection @push('style') <link rel="stylesheet" href="{{asset('admin/css/custom/image-preview.css')}}"> @endpush @push('script') <script src="{{asset('admin/js/custom/image-preview.js')}}"></script> @endpush