mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-10-30 17:41:06 -03:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <button type="button" class="btn btn-sm btn-secondary mr-1" data-toggle="modal" data-target="#editModal">{{ __('product.edit') }}</button>
 | |
| 
 | |
| <!-- MODAL - CHANGE WINDOW -->
 | |
| <div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="editModalLabel" aria-hidden="true">
 | |
| <div class="modal-dialog" role="document">
 | |
|     <div class="modal-content">
 | |
|     <div class="modal-header">
 | |
|         <h5 class="modal-title" id="editModalLabel">{{ __('product.editProduct') }}</h5>
 | |
|         <button type="button" class="close" data-dismiss="modal" aria-label="Close">
 | |
|         <span aria-hidden="true">×</span>
 | |
|         </button>
 | |
|     </div>
 | |
| 
 | |
|         <form action="/product" method="POST">
 | |
|             <div class="modal-body">
 | |
|                 <div class="form-group">
 | |
|                     <label for="name" class="col-form-label">{{ __('product.newName') }} </label>
 | |
|                     <input type="text" name="name" id="name" class="form-control" value="{{$product->name}}">
 | |
|                 </div>
 | |
|                 <div class="form-group">
 | |
|                     <label for="url" class="col-form-label">{{ __('product.newUrl') }} </label>
 | |
|                     <input type="text" name="url" id="url" class="form-control" value="{{$product->url}}">
 | |
|                 </div>
 | |
|             </div>
 | |
|             <div class="modal-footer">
 | |
|                 @method('PATCH')
 | |
|                 {{ csrf_field() }}
 | |
|                 <input type="hidden" name="product" value="{{$product->id}}"> 
 | |
|                 <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ __('product.close') }}</button>
 | |
|                 <button type="submit" class="btn btn-danger">{{ __('product.edit') }}</button>
 | |
|             </div>
 | |
|         </form>
 | |
| 
 | |
|     </div>
 | |
| </div>
 | |
| </div> |