When using the Laravel default Form class to render Forms in blade. You can add the [‘disabled’] array in the last of the form to make it disabled.
For Example:
Form::select('size', ['L' => 'Large', 'S' => 'Small'], 'S', ['disabled']);
When using the Laravel default Form class to render Forms in blade. You can add the [‘disabled’] array in the last of the form to make it disabled.
For Example:
Form::select('size', ['L' => 'Large', 'S' => 'Small'], 'S', ['disabled']);