@extends('default.layout') @section('content')

{{isset($servico) ? 'Editar' : 'Novo'}} Serviço

@csrf
@if($errors->has('nome'))
{{ $errors->first('nome') }}
@endif
@if($errors->has('valor'))
{{ $errors->first('valor') }}
@endif
@if($errors->has('tempo_servico'))
{{ $errors->first('tempo_servico') }}
@endif
@if($errors->has('comissao'))
{{ $errors->first('comissao') }}
@endif
@if($errors->has('tempo_adicional'))
{{ $errors->first('tempo_adicional') }}
@endif
@if($errors->has('valor_adicional'))
{{ $errors->first('valor_adicional') }}
@endif
@if($errors->has('tempo_tolerancia'))
{{ $errors->first('tempo_tolerancia') }}
@endif
@endsection