| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  | <div component="ajax-form" | 
					
						
							|  |  |  |      option:ajax-form:url="/attachments/{{ $attachment->id }}" | 
					
						
							|  |  |  |      option:ajax-form:method="put" | 
					
						
							| 
									
										
										
										
											2020-09-29 04:55:24 +08:00
										 |  |  |      option:ajax-form:response-container=".attachment-edit-container" | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |      option:ajax-form:success-message="{{ trans('entities.attachments_updated_success') }}"> | 
					
						
							|  |  |  |     <h5>{{ trans('entities.attachments_edit_file') }}</h5> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="form-group"> | 
					
						
							|  |  |  |         <label for="attachment_edit_name">{{ trans('entities.attachments_edit_file_name') }}</label> | 
					
						
							|  |  |  |         <input type="text" id="attachment_edit_name" | 
					
						
							|  |  |  |                name="attachment_edit_name" | 
					
						
							|  |  |  |                value="{{ $attachment_edit_name ?? $attachment->name ?? '' }}" | 
					
						
							|  |  |  |                placeholder="{{ trans('entities.attachments_edit_file_name') }}"> | 
					
						
							|  |  |  |         @if($errors->has('attachment_edit_name')) | 
					
						
							|  |  |  |             <div class="text-neg text-small">{{ $errors->first('attachment_edit_name') }}</div> | 
					
						
							|  |  |  |         @endif | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div component="tabs" class="tab-container"> | 
					
						
							|  |  |  |         <div class="nav-tabs"> | 
					
						
							|  |  |  |             <button refs="tabs@toggleFile" type="button" class="tab-item {{ $attachment->external ? '' : 'selected' }}">{{ trans('entities.attachments_upload') }}</button> | 
					
						
							|  |  |  |             <button refs="tabs@toggleLink" type="button" class="tab-item {{ $attachment->external ? 'selected' : '' }}">{{ trans('entities.attachments_set_link') }}</button> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |         <div refs="tabs@contentFile" class="mb-m {{ $attachment->external ? 'hidden' : '' }}"> | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |             @include('form.dropzone', [ | 
					
						
							| 
									
										
										
										
											2020-07-04 23:53:02 +08:00
										 |  |  |                 'placeholder' => trans('entities.attachments_edit_drop_upload'), | 
					
						
							|  |  |  |                 'url' =>  url('/attachments/upload/' . $attachment->id), | 
					
						
							|  |  |  |                 'successMessage' => trans('entities.attachments_file_updated'), | 
					
						
							|  |  |  |             ]) | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |         <div refs="tabs@contentLink" class="{{ $attachment->external ? '' : 'hidden' }}"> | 
					
						
							|  |  |  |             <div class="form-group"> | 
					
						
							|  |  |  |                 <label for="attachment_edit_url">{{ trans('entities.attachments_link_url') }}</label> | 
					
						
							|  |  |  |                 <input type="text" id="attachment_edit_url" | 
					
						
							|  |  |  |                        name="attachment_edit_url" | 
					
						
							|  |  |  |                        value="{{ $attachment_edit_url ?? ($attachment->external ? $attachment->path : '')  }}" | 
					
						
							|  |  |  |                        placeholder="{{ trans('entities.attachment_link') }}"> | 
					
						
							|  |  |  |                 @if($errors->has('attachment_edit_url')) | 
					
						
							|  |  |  |                     <div class="text-neg text-small">{{ $errors->first('attachment_edit_url') }}</div> | 
					
						
							|  |  |  |                 @endif | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <button component="event-emit-select" | 
					
						
							|  |  |  |             option:event-emit-select:name="edit-back" type="button" class="button outline">{{ trans('common.back') }}</button> | 
					
						
							|  |  |  |     <button refs="ajax-form@submit" type="button" class="button">{{ trans('common.save') }}</button> | 
					
						
							|  |  |  | </div> |