{{ Form::model($user, [ 'route' => 'dashboard.app.settings', 'method' => 'post', 'id' => 'app_settings_form' ])}}

Mail Settings

{{ Form::label('MAIL_DRIVER') }} {{ Form::text('MAIL_DRIVER', env('MAIL_DRIVER'), ['class' => 'form-control', 'placeholder' => 'mail']) }}
* To use PHP's default mail server put it as "mail". Then you will not need to fill below fields. Or you could user these services "smtp", "mailgun", "sendmail", "mandrill", "ses", and "sparkpost".
{{ Form::label('MAIL_HOST') }} {{ Form::text('MAIL_HOST', env('MAIL_HOST'), ['class' => 'form-control', 'placeholder' => 'Mail host']) }}
* Enter Mail host
{{ Form::label('MAIL_PORT') }} {{ Form::text('MAIL_PORT', env('MAIL_PORT'), ['class' => 'form-control', 'placeholder' => 'Mail Port']) }}
* Enter Mail Port
{{ Form::label('MAIL_USERNAME') }} {{ Form::text('MAIL_USERNAME', env('MAIL_USERNAME'), ['class' => 'form-control', 'placeholder' => 'Mail Username']) }}
* Enter Mail Username
{{ Form::label('MAIL_PASSWORD') }} {{ Form::text('MAIL_PASSWORD', env('MAIL_PASSWORD'), ['class' => 'form-control', 'placeholder' => 'Mail Password']) }}
* Enter Mail Password
{{ Form::label('MAIL_ENCRYPTION') }} {{ Form::text('MAIL_ENCRYPTION', env('MAIL_ENCRYPTION'), ['class' => 'form-control', 'placeholder' => 'Mail Encryption']) }}
* Enter Encryption

Google reCaptcha key

{{ Form::label('recaptcha', 'reCaptcha') }} {{ Form::text('recaptcha', env('G_RECAPTCHA_KEY'), ['class' => 'form-control', 'placeholder' => 'reCaptcha key']) }}
* Enter your google reCaptcha key
Create your key from here
{{ Form::close() }}