@extends('layouts.app') @php $title = isset($category) ? 'Edit Category' : 'Create Category'; @endphp @section('title', $title) @section('content') Categories Dashboard {{ $title }} {{ $title }} @csrf @if (isset($category)) @method('PUT') @endif Name* Category Image * (aspect ratio 64*64) Choose file × @if (isset($category) && $category->category_image) @endif Description * {{ $category->description ?? '' }} {{ $category->description_ar ?? '' }} Status status == 1 ? 'selected' : '' }}> Active status == 0 ? 'selected' : '' }}>In Active @endsection @section('scripts') @endsection