{!! Form::label('driver','Driver',[]) !!}
{!! Form::select('driver', [
null=>'Please Select',
'mail' => 'mail',
'sendmail' => 'sendmail',
'smtp' => 'smtp',
'mailgun' => 'mailgun',
'mandrill' => 'mandrill',
'log' => 'log'
],(config('mail.driver')) ? : '',['id'=>'mail_driver','class'=>'form-control input-xlarge show-tick','title'=>trans('messages.select_one')]) !!}
{!! Form::label('from_address','From Address',[]) !!}
{!! Form::input('email','from_address',config('mail.from.address') ? : '',['class'=>'form-control','placeholder'=>'From Address']) !!}
{!! Form::label('from_name','From Name',[]) !!}
{!! Form::input('text','from_name',config('mail.from.name') ? : '',['class'=>'form-control','placeholder'=>'From Name']) !!}
{!! Form::label('host','SMTP Host',[]) !!}
{!! Form::input('text','host',(config('mail.host')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Host']) !!}
{!! Form::label('port','SMTP Port',[]) !!}
{!! Form::input('text','port',(config('mail.port')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Port']) !!}
{!! Form::label('username','SMTP Username',[]) !!}
{!! Form::input('text','username',(config('mail.username')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Username']) !!}
{!! Form::label('password','SMTP Password',[]) !!}
{!! Form::input('password','password',(config('mail.password')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Password']) !!}
{!! Form::label('encryption','Encryption',[]) !!}
{!! Form::select('encryption', [
'ssl'=>'SSL',
'tls' => 'TLS'
],(config('config.encryption')) ? : 'tls',['class'=>'form-control show-tick','title'=>trans('messages.select_one')]) !!}
{!! Form::label('mandrill_secret','Secret Key',[]) !!}
{!! Form::input('text','mandrill_secret',(config('services.mandrill.secret')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'Secret Key']) !!}
{!! Form::label('mailgun_domain','Domain',[]) !!}
{!! Form::input('text','mailgun_domain',(config('services.mailgun.domain')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'Domain']) !!}
{!! Form::label('mailgun_secret','Secret Key',[]) !!}
{!! Form::input('text','mailgun_secret',(config('services.mailgun.secret')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'Secret Key']) !!}
{!! Form::label('mailgun_host','SMTP Host',[]) !!}
{!! Form::input('text','mailgun_host',(config('mail.host')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Host']) !!}
{!! Form::label('mailgun_port','SMTP Port',[]) !!}
{!! Form::input('text','mailgun_port',(config('mail.port')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Port']) !!}
{!! Form::label('mailgun_username','SMTP Username',[]) !!}
{!! Form::input('text','mailgun_username',(config('mail.username')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Username']) !!}
{!! Form::label('mailgun_password','SMTP Password',[]) !!}
{!! Form::input('text','mailgun_password',(config('mail.password')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=>'SMTP Password']) !!}