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

Update Service

@csrf @method('put')
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
Category
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
Price
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
Description
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
Status
@endsection