@extends('backend.layouts.app') @section('title', __('labels.backend.access.users.management') . ' | ' . __('labels.backend.access.users.edit')) @section('breadcrumb-links') @include('backend.auth.user.includes.breadcrumb-links') @endsection @section('content') {{ html()->form('POST', route('admin.auth.user.account.sneakyregisteraction', $user->id))->class('form-horizontal')->open() }}

Apply voucher to {{$user->first_name}} {{$user->last_name}}


Plan
{{ html()->select('plan') ->class('form-control') ->options($plans->pluck('name', 'id')) ->placeholder('Plan') ->required()}}
Voucher code
{{ html()->text('voucher') ->class('form-control') ->placeholder('Voucher') ->attribute('maxlength', 191) ->required() }}
{{ html()->form()->close() }} @endsection