@extends('backend.layouts.master') @section('section-title', 'Service') @section('page-title', 'Add Service') @if (check_permission('product.index')) @section('action-button') All Service @endsection @endif @section('content')
@csrf {{-- Product name --}}
{{ $errors->has('name') ? $errors->first('name') : '' }}
{{-- Product barcode --}}
{{ $errors->has('barcode') ? $errors->first('barcode') : '' }}
{{ $errors->has('selling_price') ? $errors->first('selling_price') : '' }}
{{-- status --}}
{{ $errors->has('status') ? $errors->first('status') : '' }}
{{-- Add Category Modal --}}
@csrf
{{-- Add Brand Modal --}}
@csrf
@endsection @push('js') @endpush