@extends('layouts.partials.master') @section('title', 'Criar Novo Serviço') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar novo serviço']) Voltar
@csrf @method('POST')
@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 ($errors->has('points_needed'))
{{ $errors->first('points_needed') }}
@endif
@include('layouts.components.translation-create')
@endsection