@extends('admin.layouts.master') @section('content')

{{ __('Blogs') }}

{{ __('Edit Blog Category') }}

@csrf
@if ($errors->has('image'))

{{ $errors->first('image') }}

@endif

{{ __('Upload 730X455 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('title.en'))

{{ $errors->first('title.en') }}

@endif
@if ($errors->has('title.ar'))

{{ $errors->first('title.ar') }}

@endif
@if ($errors->has('content.en'))

{{ $errors->first('content.en') }}

@endif
@if ($errors->has('content.ar'))

{{ $errors->first('content.ar') }}

@endif
@if ($errors->has('bcategory_id'))

{{ $errors->first('bcategory_id') }}

@endif
@if ($errors->has('meta_keywords'))

{{ $errors->first('meta_keywords') }}

@endif
@if ($errors->has('meta_description'))

{{ $errors->first('meta_description') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection