@extends('layouts.partials.master') @section('title', 'Criar Cabaz') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar Cabaz']) Voltar
@csrf @method('POST')
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('expire'))
{{ $errors->first('expire') }}
@endif

Data inicial

@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif

Data final

@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@include('layouts.components.translation-create')
@endsection