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

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

@lang('labels.backend.access.license.title') : {{ !empty($userDetail->credit) ? $userDetail->credit : 0 }}
{{ html()->label(__('validation.attributes.backend.access.license.name')) ->class('col-md-2 form-control-label') ->for('name') }}
@if ($logged_in_user->isStockz()) {{ html()->text('tags_license',$userList) ->class('form-control') ->placeholder(__('validation.attributes.backend.access.license.name')) ->attribute('maxlength', 191) ->required() ->autofocus() }} @else {{ html()->text('tags_license') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.license.name')) ->attribute('maxlength', 191) ->required() ->autofocus() }} @endif
{{ html()->label(__('validation.attributes.backend.access.license.licensetype.remark')) ->class('col-md-2 form-control-label') ->for('remark') }}
{{ html()->text('remark') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.license.licensetype.remark')) ->autofocus() }}
@if ($logged_in_user->isStockz()) @include('backend.license.userlicense', ['userDetails' => $userDetail,'licensekey' => $licensekey]) @endif
@endsection @push('after-scripts') @endpush