I have a form in a blade view, like this:
<form id="delete_form" method="post" action="">
@method('DELETE')
@csrf
<input type="hidden" id="delete_type" name="delete_type" value="">
</form>
The value of actio...
partners I am having the following problem and I can not find the solution, I have a view with a form to register a user, which has the following dropdownlist
<select class="form-control" name="department_id" id="department_id">
@foreach...
In my template blade I have:
{{ Form::select('idnumero', $numero, old('idnumero'), ['id'=>'numero']) }}
I want to use the old('idnumero') in jquery, is there any way?