@extends('layouts.partials.master') @section('title', 'Editar Voucher de pontos') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar Voucher de pontos']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@if ($errors->has('code'))
{{ $errors->first('code') }}
@endif
@if ($errors->has('points'))
{{ $errors->first('points') }}
@endif
@if ($errors->has('expired_at'))
{{ $errors->first('expired_at') }}
@endif
@endsection