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