@extends('layouts.default') @section('content')

Firefly Delete "{{{$account->name}}}"

Remember that deleting something is permanent.

{{Form::open(['class' => 'form-horizontal','url' => route('accounts.destroy',$account->id)])}}
@if($account->transactions()->count() > 0)

Account "{{{$account->name}}}" still has {{$account->transactions()->count()}} transaction(s) associated to it. These will be deleted as well.

@endif

Press "Delete permanently" If you are sure you want to delete "{{{$account->name}}}".

Cancel
{{Form::close()}} @stop