@extends('layouts.app') @php $title = isset($category)?'Edit Category':'Create Category'; @endphp @section('title', $title) @section('css') @endsection @section('content') @php $type = config('constant.gender_type'); $categoryType = config('constant.category_type'); $imageValidation = config('constant.image_validation'); @endphp

Categories

{{$title}}

@csrf @if(isset($category)) @method('PUT') @endif
Recommended size: 300x300px. Max size: {{ $imageValidation['max_size_mb'] }}MB @if(isset($category) && $category->image)
Category Image
@endif
@endsection @section('scripts') @endsection