| 
									
										
										
										
											2022-01-29 14:19:01 +01:00
										 |  |  | {% extends './layout/default' %}
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% block breadcrumbs %}
 | 
					
						
							|  |  |  |     {{ Breadcrumbs.render(Route.getCurrentRoute.getName, user) }}
 | 
					
						
							|  |  |  | {% endblock %}
 | 
					
						
							|  |  |  | {% block content %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-18 17:26:31 +01:00
										 |  |  |     <form method="post" action="{{ route('settings.users.update',user.id) }}" class="form-horizontal"
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |           accept-charset="UTF-8"
 | 
					
						
							|  |  |  |           enctype="multipart/form-data">
 | 
					
						
							|  |  |  |         <input type="hidden" name="_token" value="{{ csrf_token() }}"/>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |         <input type="hidden" name="id" value="{{ user.id }}"/>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |         <div class="row">
 | 
					
						
							|  |  |  |             <div class="col-lg-6 col-md-6 col-sm-12">
 | 
					
						
							|  |  |  |                 <div class="box box-primary">
 | 
					
						
							|  |  |  |                     <div class="box-header with-border">
 | 
					
						
							|  |  |  |                         <h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							|  |  |  |                     <div class="box-body">
 | 
					
						
							|  |  |  |                         {% if canEditDetails %}
 | 
					
						
							| 
									
										
										
										
											2023-06-10 16:08:32 +02:00
										 |  |  |                             {{ ExpandedForm.text('email',user.email,{'helpText': trans('firefly.admin_update_email')}) }}
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |                             {{ ExpandedForm.password('password') }}
 | 
					
						
							|  |  |  |                             {{ ExpandedForm.password('password_confirmation') }}
 | 
					
						
							|  |  |  |                         {% else %}
 | 
					
						
							|  |  |  |                             <input type="hidden" name="email" value="{{ user.email }}"/>
 | 
					
						
							|  |  |  |                             <input type="hidden" name="password" value=""/>
 | 
					
						
							|  |  |  |                             <input type="hidden" name="password_confirmation" value=""/>
 | 
					
						
							|  |  |  |                         {% endif %}
 | 
					
						
							|  |  |  |                         {{ ExpandedForm.checkbox('blocked') }}
 | 
					
						
							|  |  |  |                         {{ ExpandedForm.select('blocked_code', codes, user.blocked_code) }}
 | 
					
						
							|  |  |  |                         {% if user.id != currentUser.id %}
 | 
					
						
							|  |  |  |                             {{ ExpandedForm.checkbox('is_owner',1,isAdmin) }}
 | 
					
						
							|  |  |  |                         {% endif %}
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |                 </div>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |         <div class="row">
 | 
					
						
							|  |  |  |             <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
 | 
					
						
							|  |  |  |                 {# panel for options #}
 | 
					
						
							|  |  |  |                 <div class="box">
 | 
					
						
							|  |  |  |                     <div class="box-header with-border">
 | 
					
						
							|  |  |  |                         <h3 class="box-title">{{ 'options'|_ }}</h3>
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							|  |  |  |                     <div class="box-body">
 | 
					
						
							|  |  |  |                         {{ ExpandedForm.optionsList('update','account') }}
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							|  |  |  |                     <div class="box-footer">
 | 
					
						
							|  |  |  |                         <button type="submit" class="btn pull-right btn-success">
 | 
					
						
							|  |  |  |                             {{ ('update_user')|_ }}
 | 
					
						
							|  |  |  |                         </button>
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |                 </div>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         </div>
 | 
					
						
							|  |  |  |     </form>
 | 
					
						
							|  |  |  | {% endblock %}
 |