@extends('admin.layout.app') @section('content')
@include('admin.layout.session')
Edit Categories
@csrf @method('put')
@if ($errors->has('category_name'))
{{ $errors->first('category_name') }}
@endif
@if ($errors->has('keyword'))
{{ $errors->first('keyword') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('cat_image'))
{{ $errors->first('cat_image') }}
@endif
@if($category->cat_image != '') @endif
Back
@endsection @push('js') @endpush