@extends('backend.layouts.master') @section('section-title', 'Edit Service') @section('page-title', 'Service Edit') @if (check_permission('service.index')) @section('action-button') All Service @endsection @endif @section('content')
@csrf @method('put') {{-- Service name --}}
{{ $errors->has('name') ? $errors->first('name') : '' }}
{{-- Service barcode --}}
{{ $errors->has('barcode') ? $errors->first('barcode') : '' }}
{{ $errors->has('selling_price') ? $errors->first('selling_price') : '' }}
{{-- status --}}
{{ ($errors->has('status'))?$errors->first('status'):''; }}
{{-- Description --}}
@endsection