diff --git a/.env.example b/.env.example index 3898f529..0776797f 100644 --- a/.env.example +++ b/.env.example @@ -23,8 +23,8 @@ MAIL_DRIVER=smtp MAIL_PORT=25 MAIL_ENCRYPTION= MAIL_HOST=maildev -MAIL_FROM_ADDRESS="testing@attendize.com" -MAIL_FROM_NAME="testing service" +MAIL_FROM_ADDRESS=testing@attendize.com +MAIL_FROM_NAME=testing_service MAIL_PASSWORD= MAIL_USERNAME= diff --git a/resources/views/Installer/Installer.blade.php b/resources/views/Installer/Installer.blade.php index bc65d9a2..3ed585f3 100644 --- a/resources/views/Installer/Installer.blade.php +++ b/resources/views/Installer/Installer.blade.php @@ -210,7 +210,7 @@
{!! Form::label('mail_driver', trans("Installer.mail_from_address"), array('class'=>' control-label required')) !!} - {!! Form::text('mail_driver', Input::old('mail_driver'), + {!! Form::text('mail_driver', $value = env("MAIL_DRIVER"), array( 'class'=>'form-control ', 'placeholder' => 'mail' @@ -222,7 +222,7 @@
{!! Form::label('mail_port', trans("Installer.mail_port"), array('class'=>' control-label ')) !!} - {!! Form::text('mail_port', Input::old('mail_port'), + {!! Form::text('mail_port', $value = env("MAIL_PORT"), array( 'class'=>'form-control' )) !!}