@extends('layouts.admin') @section('content')

{{__('Edit Category')}}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if($category->image) @else @endif

{{__('Image')}}

@if ($errors->has('image')) {{ $errors->first('image') }} @endif

{{ __('Accepted Image Files') }}: PNG
{{ __('Recommend Size') }}: 60 x 60 (1MB)

@if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif
@if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif
@if ($errors->has('meta_keywords')) {{ $errors->first('meta_keywords') }} @endif
@if($category->og_image != NULL && $category->og_image != '') @else @endif

{{__('OG Image')}}

@if ($errors->has('og_image')) {{ $errors->first('og_image') }} @endif

{{ __('Accepted Files') }}: PNG, JPG
{{ __('Recommend Size') }}: 1200 x 627

@updateButton
@endsection @push('style') @endpush @push('script') @endpush