@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('Edit Service')}} @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('Edit Service')}}

{{__('All Services')}}
@csrf
@php $blog_img = get_attachment_image_by_id($service->img_icon,null,true); $blog_image_btn_label = 'Upload Image'; @endphp @if (!empty($blog_img))
@php $blog_image_btn_label = 'Change Image'; @endphp @endif
{{__('Recommended image size 64x64')}}
@php $blog_img = get_attachment_image_by_id($service->image,null,true); $blog_image_btn_label = 'Upload Image'; @endphp @if (!empty($blog_img))
@php $blog_image_btn_label = 'Change Image'; @endphp @endif
{{__('Recommended image size 1920x1280')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection