@extends('admin.layouts.master-soyuz') @section('title','Edit Business Category | ') @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Home') }} @endslot @slot('menu1') {{ __("Business Category") }} @endslot @slot('menu2') {{ __("Edit Business Category") }} @endslot @slot('button')
Back
@endslot @endcomponent
@if ($errors->any()) @endif
Edit Business Category
{{csrf_field()}} {{ method_field('PUT') }}
(Please Enter Description)
@if($cat->image != '') @if(file_exists(public_path().'/images/business_category/'.$cat->image) ) @else @endif @else @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
(Please choose a Image)
@if($cat->banner_image != '') @if(file_exists(public_path().'/images/business_category/'.$cat->banner_image) ) @else @endif @else @endif
@if ($errors->has('banner_image')) {{ $errors->first('banner_image') }} @endif
(Please choose a banner Image)
Upload
{{__("Multiple images can be choosen")}}
{{ __('staticwords.MaxFileSize') }} : {{__("2 MB")}}

@forelse($cat->BusinessProductGallery as $gallery) @if($gallery->image != '') {{ $gallery->image }} @else @endif @empty {{__("No images in artwork gallery.")}} @endforelse


(Please Choose Status)
@endsection @section('custom-script') @endsection