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