@extends('backend.layouts.app') @section('title', __('labels.backend.access.license.licensetype.management') . ' | ' . __('labels.backend.access.license.licensetype.create')) @section('content') {{ html()->form('POST', route('admin.auth.licensetype.store'))->class('form-horizontal')->open() }}

@lang('labels.backend.access.license.licensetype.management') @lang('labels.backend.access.license.licensetype.create')


{{ html()->label(__('validation.attributes.backend.access.license.licensetype.prefix')) ->class('col-md-2 form-control-label') ->for('prefix') }}
{{ html()->text('prefix') ->class('form-control') ->placeholder('Prefix') ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label(__('validation.attributes.backend.access.license.licensetype.name')) ->class('col-md-2 form-control-label') ->for('name') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.permissions.name')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->label(__('validation.attributes.backend.access.license.licensetype.duration')) ->class('col-md-2 form-control-label') ->for('name') }}
{{ html()->number('duration') ->class('form-control') ->required() ->placeholder(__('validation.attributes.backend.access.license.licensetype.duration')) ->autofocus() }}
{{ html()->label(__('validation.attributes.backend.access.license.licensetype.status')) ->class('col-md-2 form-control-label') ->for('name') }}
{{ html()->label( html()->checkbox('status',null) ->class('switch-input') ->id('status') . '') ->class('switch switch-label switch-pill switch-primary mr-2') ->for('status') }}
{{ html()->label(__('validation.attributes.backend.access.license.licensetype.keytype')) ->class('col-md-2 form-control-label') ->for('name') }}
{{ html()->select('licensekey',$licensekey, null) ->class('form-control') ->placeholder(__('labels.backend.access.dropboxselect')) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.license.licensetype.amount')) ->class('col-md-2 form-control-label') ->for('amount') }}
{{ html()->text('amount') ->class('form-control') ->placeholder('Amount') ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ html()->form()->close() }} @endsection