| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  | @extends('layouts.simple') | 
					
						
							| 
									
										
										
										
											2019-12-30 01:03:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | @section('body') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="container small pt-xl"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <main class="card content-wrap auto-height"> | 
					
						
							|  |  |  |             <h1 class="list-heading">{{ trans('settings.user_api_token') }}</h1> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <form action="{{ $user->getEditUrl('/api-tokens/' . $token->id) }}" method="post"> | 
					
						
							|  |  |  |                 {!! method_field('put') !!} | 
					
						
							|  |  |  |                 {!! csrf_field() !!} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 <div class="setting-list"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <div class="grid half gap-xl v-center"> | 
					
						
							|  |  |  |                         <div> | 
					
						
							| 
									
										
										
										
											2019-12-30 04:07:28 +08:00
										 |  |  |                             <label class="setting-list-label">{{ trans('settings.user_api_token_id') }}</label> | 
					
						
							|  |  |  |                             <p class="small">{{ trans('settings.user_api_token_id_desc') }}</p> | 
					
						
							| 
									
										
										
										
											2019-12-30 01:03:52 +08:00
										 |  |  |                         </div> | 
					
						
							|  |  |  |                         <div> | 
					
						
							| 
									
										
										
										
											2019-12-30 04:07:28 +08:00
										 |  |  |                             @include('form.text', ['name' => 'token_id', 'readonly' => true]) | 
					
						
							| 
									
										
										
										
											2019-12-30 01:03:52 +08:00
										 |  |  |                         </div> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     @if( $secret ) | 
					
						
							|  |  |  |                         <div class="grid half gap-xl v-center"> | 
					
						
							|  |  |  |                             <div> | 
					
						
							| 
									
										
										
										
											2019-12-30 04:07:28 +08:00
										 |  |  |                                 <label class="setting-list-label">{{ trans('settings.user_api_token_secret') }}</label> | 
					
						
							|  |  |  |                                 <p class="small text-warn">{{ trans('settings.user_api_token_secret_desc') }}</p> | 
					
						
							| 
									
										
										
										
											2019-12-30 01:03:52 +08:00
										 |  |  |                             </div> | 
					
						
							|  |  |  |                             <div> | 
					
						
							|  |  |  |                                 <input type="text" readonly="readonly" value="{{ $secret }}"> | 
					
						
							|  |  |  |                             </div> | 
					
						
							|  |  |  |                         </div> | 
					
						
							|  |  |  |                     @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |                     @include('users.api-tokens.parts.form', ['model' => $token]) | 
					
						
							| 
									
										
										
										
											2019-12-30 01:03:52 +08:00
										 |  |  |                 </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 <div class="grid half gap-xl v-center"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <div class="text-muted text-small"> | 
					
						
							|  |  |  |                         <span title="{{ $token->created_at }}"> | 
					
						
							|  |  |  |                             {{ trans('settings.user_api_token_created', ['timeAgo' => $token->created_at->diffForHumans()]) }} | 
					
						
							|  |  |  |                         </span> | 
					
						
							|  |  |  |                         <br> | 
					
						
							|  |  |  |                         <span title="{{ $token->updated_at }}"> | 
					
						
							|  |  |  |                             {{ trans('settings.user_api_token_updated', ['timeAgo' => $token->created_at->diffForHumans()]) }} | 
					
						
							|  |  |  |                         </span> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     <div class="form-group text-right"> | 
					
						
							|  |  |  |                         <a href="{{  $user->getEditUrl('#api_tokens') }}" class="button outline">{{ trans('common.back') }}</a> | 
					
						
							|  |  |  |                         <a href="{{  $user->getEditUrl('/api-tokens/' . $token->id . '/delete') }}" class="button outline">{{ trans('settings.user_api_token_delete') }}</a> | 
					
						
							|  |  |  |                         <button class="button" type="submit">{{ trans('common.save') }}</button> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             </form> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         </main> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @stop |