Skip to content

Commit 4671091

Browse files
committed
updated
1 parent 1f8cfa6 commit 4671091

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

resources/views/environment-wizard.blade.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ class="tabs-wrap">
8989
<input type="text" name="app_env_custom" id="app_env_custom"
9090
placeholder="{{ trans('installer::messages.environment.wizard.form.app_env_placeholder_other') }}" />
9191
</div>
92-
@if ($errors->has('app_name'))
92+
@if ($errors->has('app_env'))
9393
<span class="error-block">
9494
<i class="fa fa-fw fa-exclamation-triangle" aria-hidden="true"></i>
95-
{{ $errors->first('app_name') }}
95+
{{ $errors->first('app_env') }}
9696
</span>
9797
@endif
9898
</div>
@@ -102,11 +102,11 @@ class="tabs-wrap">
102102
{{ trans('installer::messages.environment.wizard.form.app_debug_label') }}
103103
</label>
104104
<label for="app_debug_true">
105-
<input type="radio" name="app_debug" id="app_debug_true" value=true />
105+
<input type="radio" name="app_debug" id="app_debug_true" value=true />
106106
{{ trans('installer::messages.environment.wizard.form.app_debug_label_true') }}
107107
</label>
108108
<label for="app_debug_false">
109-
<input type="radio" name="app_debug" id="app_debug_false" value=false checked/>
109+
<input type="radio" name="app_debug" id="app_debug_false" value=false checked />
110110
{{ trans('installer::messages.environment.wizard.form.app_debug_label_false') }}
111111
</label>
112112
@if ($errors->has('app_debug'))
@@ -154,7 +154,7 @@ class="tabs-wrap">
154154
</label>
155155
<select name="cashier_currency" id="cashier_currency">
156156
@foreach (curriencies() as $key => $name)
157-
<option value="{{$key}}" @selected($key == 'usd')>{{$name}}</option>
157+
<option value="{{ $key }}" @selected($key == 'usd')>{{ $name }}</option>
158158
@endforeach
159159
</select>
160160
@if ($errors->has('cashier_currency'))

0 commit comments

Comments
 (0)