@extends('layouts.partials.master') @section('title', 'Serviços') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar Serviço']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
@if ($errors->has('store_id'))
{{ $errors->first('store_id') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('schedule_type'))
{{ $errors->first('schedule_type') }}
@endif
@if ($errors->has('service_hours'))
{{ $errors->first('service_hours') }}
@endif
@if ($errors->has('service_minutes'))
{{ $errors->first('service_minutes') }}
@endif
Pode ser reservado juntamente com outros serviços @if ($errors->has('is_cumulative'))
{{ $errors->first('is_cumulative') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
@if ($errors->has('url'))
{{ $errors->first('url') }}
@endif
@include('layouts.components.translation-edit')
@endsection @push('scripts') @vite('resources/js/srv_services/form.js') @endpush