@extends('layouts.partials.master') @section('title', 'Criar Voucher de pontos') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar Voucher de pontos']) Voltar
@csrf @method('POST')
@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