mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			946 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			946 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('layouts.default')
 | |
| @section('content')
 | |
| {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $currency) !!}
 | |
| {!! Form::open(['class' => 'form-horizontal','id' => 'destroy','url' => route('currency.destroy',$currency->id)]) !!}
 | |
| <div class="row">
 | |
|     <div class="col-lg-6 col-md-12 col-sm-12">
 | |
|         <div class="panel panel-red">
 | |
|             <div class="panel-heading">
 | |
|                 Delete currency "{{{$currency->name}}}"
 | |
|             </div>
 | |
|             <div class="panel-body">
 | |
|                 <p>
 | |
|                 Are you sure that you want to delete currency "{{{$currency->name}}}"?
 | |
|                 </p>
 | |
|                 <p>
 | |
|                     <button type="submit" class="btn btn-default btn-danger">Delete permanently</button>
 | |
|                     <a href="{{URL::previous()}}" class="btn-default btn">Cancel</a >
 | |
|                 </p>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| {!! Form::close() !!}
 | |
| @stop
 |