@extends('layouts.partials.master') @section('title', 'Editar Serviço') @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('category_id'))
{{ $errors->first('category_id') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif

formatos: jpeg, png, jpg, gif. tamanho recomendado: 150px x 150px

{{ $errors->first('image') }}
@if ($service->image) Imagem @endif
@if ($errors->has('points_needed'))
{{ $errors->first('points_needed') }}
@endif
@include('layouts.components.translation-edit')
@endsection