We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using this template the "readonly" attribute is not supported.
FormItem::text('id', 'USER Id')->readonly(true),
For example text.blade.php from
<div class="form-group {{ $errors->has($name) ? 'has-error' : '' }}"> <label for="{{ $name }}">{{ $label }}</label> <input class="form-control" name="{{ $name }}" type="text" id="{{ $name }}" value="{{ $value }}"> @include(AdminTemplate::view('formitem.errors')) </div>
should be changed in
<div class="form-group {{ $errors->has($name) ? 'has-error' : '' }}"> <label for="{{ $name }}">{{ $label }}</label> <input class="form-control" name="{{ $name }}" type="text" id="{{ $name }}" value="{{ $value }}" @if(isset($readonly))readonly="{{ $readonly }}" @endif> @include(AdminTemplate::view('formitem.errors')) </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using this template the "readonly" attribute is not supported.
For example text.blade.php from
should be changed in
The text was updated successfully, but these errors were encountered: