@extends('back.layouts.layout') @section('title','Edit Category') @section('content-header') Edit Category Dashboard Product Edit Category @endsection @section('content') @csrf @method('put') Name * @if ($errors->has('name')){{ $errors->first('name') }}@endif Description {{ (!empty(old('description'))) ? old('description') : $category->description }} @if ($errors->has('description')){{ $errors->first('description') }}@endif Status @foreach($statuses as $key=> $status) status) selected @endif>{{ $status }} @endforeach @if ($errors->has('status')){{ $errors->first('status') }} @endif Publish Save Category List @endsection