@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.addService.title_singular') }}
@csrf
@if($errors->has('category')) {{ $errors->first('category') }} @endif {{ trans('cruds.addService.fields.category_helper') }}
@if($errors->has('subcategory')) {{ $errors->first('subcategory') }} @endif {{ trans('cruds.addService.fields.subcategory_helper') }}
@if($errors->has('shops')) {{ $errors->first('shops') }} @endif {{ trans('cruds.addService.fields.shops_helper') }}
@if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.addService.fields.status_helper') }}
@endsection