| 
									
										
										
										
											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, currency) }}
 | 
					
						
							|  |  |  | {% endblock %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %}
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |     <form method="post" action="{{ route('currencies.update',currency.id) }}" class="form-horizontal"
 | 
					
						
							|  |  |  |           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="{{ currency.id }}"/>
 | 
					
						
							|  |  |  |         <div class="row">
 | 
					
						
							|  |  |  |             <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
 | 
					
						
							|  |  |  |                 <div class="box box-primary">
 | 
					
						
							|  |  |  |                     <div class="box-header with-border">
 | 
					
						
							|  |  |  |                         <h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3>
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							|  |  |  |                     <div class="box-body">
 | 
					
						
							| 
									
										
										
										
											2023-06-10 16:08:32 +02:00
										 |  |  |                         {{ ExpandedForm.text('name', currency.name,{'maxlength' : 48}) }}
 | 
					
						
							|  |  |  |                         {{ ExpandedForm.text('symbol', currency.symbol,{'maxlength' : 51}) }}
 | 
					
						
							|  |  |  |                         {{ ExpandedForm.text('code', currency.code,{'maxlength' : 51}) }}
 | 
					
						
							|  |  |  |                         {{ ExpandedForm.integer('decimal_places', currency.decimal_places,{'maxlength' : 2,'min': 0,'max': 12}) }}
 | 
					
						
							|  |  |  |                         {{ ExpandedForm.checkbox('enabled', currency.enabled) }}
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |                     </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">
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |                 {# 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','currency') }}
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							|  |  |  |                     <div class="box-footer">
 | 
					
						
							|  |  |  |                         <button type="submit" class="btn btn-success pull-right">
 | 
					
						
							|  |  |  |                             {{ 'update_currency'|_ }}
 | 
					
						
							|  |  |  |                         </button>
 | 
					
						
							|  |  |  |                     </div>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |                 </div>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-04 10:09:24 +02:00
										 |  |  |             </div>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |         </div>
 | 
					
						
							|  |  |  |     </form>
 | 
					
						
							|  |  |  | {% endblock %}
 |