@extends('layouts.partials.master') @section('title', 'Editar Cabaz') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar Cabaz']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@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 ($bundle->image) Logo @endif @if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@include('layouts.components.translation-edit')
@endsection