@extends('admin.layouts.app') @section('title', isset($service) ? 'Edit Service' : 'Add Service') @section('breadcrumb') @endsection @section('content')
@csrf @if(isset($service)) @method('PUT') @endif
{{-- Main Content --}}
Service Information
@error('title')
{{ $message }}
@enderror
/services/
@error('slug')
{{ $message }}
@enderror
e.g. fas fa-cut, fas fa-tree
Used for page section links (e.g. #lawn-mowing)
{{-- SEO --}}
SEO Settings
{{-- Sidebar --}}
{{-- Publish --}}
Publish
is_active ?? true) ? 'checked' : '' }}>
is_featured ?? false) ? 'checked' : '' }}>
@if(isset($service)) Cancel @endif
{{-- Featured Image --}}
Featured Image
@if(isset($service) && $service->featured_image)
@else
No image selected
@endif
JPG, PNG, WEBP. Max 2MB.
@endsection