@extends('layouts.default') @section('content') {{Form::open(['class' => 'form-horizontal','url' => route('accounts.destroy',$account->id)])}}
Delete account "{{{$account->name}}}"

Are you sure?

@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

Cancel

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