{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'Category Create') @section('vendor-style') @endsection @section('content')
@csrf
Add Category
Category Name *
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Description
@if ($errors->has('detail'))
{{ $errors->first('detail') }}
@endif
Image *
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
For Customer

For Merchant

Cancel
@endsection @section('vendor-script') @endsection {{-- page script --}} @section('page-script') @endsection