@extends('layouts.admin') @section('title','Dashboard') @section('css') @endsection @section('breadcrumb', 'Category') @section('content')
{{$category->id == ''?"Add": "Edit"}} Category
@csrf
@if ($errors->has('categoryName')) {{$errors->first('categoryName')}} @endif
@if ($errors->has('fr_categoryName')) {{$errors->first('fr_categoryName')}} @endif
@if ($errors->has('categoryDescription')) {{$errors->first('categoryDescription')}} @endif
@if ($errors->has('fr_categoryDescription')) {{$errors->first('fr_categoryDescription')}} @endif
@if ($errors->has('categoryIcon')) {{$errors->first('categoryIcon')}} @endif
@if ($errors->has('categorylocation')) {{$errors->first('categorylocation')}} @endif
@if ($errors->has('fr_categorylocation')) {{$errors->first('fr_categorylocation')}} @endif
@if($category->id != '') @method('put') @endif
@endsection