@if(Session::has('success'))
        
            
            Success!
            
            {{Session::get('success')}}
        
        @endif
        
        @if(Session::has('fails'))
        
            
            Alert! Failed.
            
            {{Session::get('fails')}}
        
        @endif
        
            
            
                {!! Form::label('driver',Lang::get('lang.driver')) !!}
                {!! $errors->first('driver', ':message') !!}
                
            
            
                {!! Form::label('host',Lang::get('lang.host')) !!}
                {!! $errors->first('host', ':message') !!}
                {!! Form::text('host',null,['class' => 'form-control']) !!}
            
            
                {!! Form::label('port',Lang::get('lang.port')) !!}
                {!! $errors->first('port', ':message') !!}
                {!! Form::text('port',null,['class' => 'form-control']) !!}
            
            
                {!! Form::label('encryption',Lang::get('lang.encryption')) !!}
                {!! $errors->first('encryption', ':message') !!}
                
            
            
                {!! Form::label('name',Lang::get('lang.name')) !!}
                {!! $errors->first('name', ':message') !!}
                {!! Form::text('name',null,['class' => 'form-control']) !!}
            
            
                {!! Form::label('email',Lang::get('lang.email')) !!}
                {!! $errors->first('email', ':message') !!}
                {!! Form::text('email',null,['class' => 'form-control']) !!}
            
            
                {!! Form::label('password',Lang::get('lang.password')) !!}
                {!! $errors->first('password', ':message') !!}
                @if($settings->password)
                
                @else
                
                @endif