diff --git a/app/views/transactions/create.blade.php b/app/views/transactions/create.blade.php index 19d05da1e1..fcc31a572e 100644 --- a/app/views/transactions/create.blade.php +++ b/app/views/transactions/create.blade.php @@ -38,7 +38,7 @@
- @if($errors->has('description') + @if($errors->has('description'))

{{$errors->first('description')}}

@endif
@@ -57,7 +57,7 @@
{{Form::select('account_id',$accounts,Input::old('account_id') ?: Input::get('account'),['class' => 'form-control'])}} - @if($errors->has('account_id') + @if($errors->has('account_id'))

{{$errors->first('account_id')}}

@endif
@@ -77,7 +77,7 @@
- @if($errors->has('beneficiary') + @if($errors->has('beneficiary'))

{{$errors->first('beneficiary')}}

@else This field will auto-complete your existing beneficiaries (if any), but you can type freely to create new ones. @@ -135,7 +135,7 @@
- @if($errors->has('date') + @if($errors->has('date'))

{{$errors->first('date')}}

@endif
@@ -151,7 +151,7 @@
{{Form::select('budget_id',$budgets,Input::old('budget_id') ?: 0,['class' => 'form-control'])}} - @if($errors->has('budget_id') + @if($errors->has('budget_id'))

{{$errors->first('budget_id')}}

@else Select one of your budgets to make this transaction a part of it. @@ -164,7 +164,7 @@
- @if($errors->has('category') + @if($errors->has('category'))

{{$errors->first('category')}}

@else Add more fine-grained information to this transaction by entering a category.