@extends('theme::backend.layouts.app') @section('theme::backend-content') @include('theme::backend.layouts.navbar')

{{ __('reddington.backend.spin.create.title') }}

{{ __('reddington.backend.spin.create.title') }}
@if ($message = Session::get('success'))
{{ $message }}
@endif @if ($message = Session::get('error'))
{{ $message }}
@endif

Important Notes

  • If you want to add free spins as a reward, please type "free_spins" in the codename input.
  • You should add the amount of spins to gain in the quantity input.
  • {{ __('reddington.backend.spin.create.form.probability_placeholder') }} (e.g. 0.50 for 50%)
  • You can leave name input empty, we will got the name from _ItemPoolName table exists in shard database.
@method('POST') @csrf
{{ __('reddington.backend.spin.create.form.name_placeholder') }} @if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ __('reddington.backend.spin.create.form.codename_placeholder') }} @if ($errors->has('codename'))
{{ $errors->first('codename') }}
@endif
{{ __('reddington.backend.spin.create.form.qty_placeholder') }} @if ($errors->has('quantity'))
{{ $errors->first('quantity') }}
@endif
{{ __('reddington.backend.spin.create.form.probability_placeholder') }} @if ($errors->has('probability'))
{{ $errors->first('probability') }}
@endif
@endsection