/
home
/
sjslayjy
/
public_html
/
cropnet
/
resources
/
views
/
admin
/
master
/
Upload File
HOME
<div class="box"> <!-- /.box-header --> <form action="{{URL('/admin/edit-animal-type')}}" role="form" id="editMccForm" enctype="multipart/form-data"> <input type="hidden" value="{{$mcc->id}}" name="id"> <div class="box-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label class="form-label">Animal Type</label> <input type="text" class="form-control" name="name" id="name" placeholder="Name" value="{{$mcc->animal_type}}"> <span class="label label-danger" id="add_name_error" style="display: none;"></span> </div> </div> </div> </div> <!-- /.box-body --> <div class="box-footer text-end"> <button type="button" class="btn btn-danger me-1" data-bs-dismiss="modal">Cancel </button> <button id="editMccBtn" type="button" class="btn btn-warning" onclick="updateMcc()"> <i class="ti-save-alt"></i> Update </button> </div> </form> </div> <!-- /.box -->