@extends('layout.masters') @section('content')

Add New Server

{{ csrf_field() }}
@if ($errors->has('server_name'))
{{ $errors->first('server_name') }}
@endif
@if ($errors->has('host'))
{{ $errors->first('host') }}
@endif
@if ($errors->has('server_ip'))
{{ $errors->first('server_ip') }}
@endif
@if ($errors->has('connection_type'))
{{ $errors->first('connection_type') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('port'))
{{ $errors->first('port') }}
@endif
@if ($server->keyfile_path == '' || $server->keyfile_path == NULL) @endif @if ($server->keyfile_path != '' && $server->keyfile_path != NULL)
delete @endif
Cancel
@endsection