@extends('layouts/default') {{-- Page title --}} @section('title') @if ($item->id) {{ trans('admin/licenses/form.update') }} @else {{ trans('admin/licenses/form.create') }} @endif @parent @stop {{-- Page content --}} @section('content') @if ($item->id) @endif @can('viewKeys', $item) @endcan {{-- Reassignable defaults to CHECKED for new licenses (see the old() fallback) since it's the most common use-case. 's single-mode falls back to `$item->{$name} ?? false`, which would default new records to unchecked. Hand-authored here to preserve the old behavior. --}}
{{ trans('admin/licenses/form.reassignable') }}
@stop